:root {
  --navy: #08294f;
  --navy-deep: #031d3b;
  --green: #2f9a36;
  --green-dark: #217329;
  --green-soft: #e8f6ea;
  --sky: #eef7fd;
  --paper: #f7fbff;
  --surface: #ffffff;
  --text: #0c2444;
  --muted: #5b6b7e;
  --line: #dce8f2;
  --shadow: 0 16px 42px rgba(8, 41, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  min-height: 92px;
  padding: 12px clamp(22px, 6vw, 86px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 74px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(8, 41, 79, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  height: 72px;
  min-width: 150px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.42);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.site-nav > .mobile-offer-link {
  display: none !important;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:first-child::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(47, 154, 54, 0.28);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--green-dark);
}

.language-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 22px rgba(8, 41, 79, 0.14);
  cursor: pointer;
  line-height: 1;
}

.language-toggle::before {
  display: block;
  width: 28px;
  height: 20px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(8, 41, 79, 0.18);
  background: linear-gradient(#fff 0 50%, #dc143c 50% 100%);
  content: "";
}

.language-toggle[data-current-lang="en"]::before {
  background:
    linear-gradient(33deg, transparent 0 42%, #fff 42% 49%, #c8102e 49% 55%, #fff 55% 62%, transparent 62%),
    linear-gradient(147deg, transparent 0 42%, #fff 42% 49%, #c8102e 49% 55%, #fff 55% 62%, transparent 62%),
    linear-gradient(90deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(0deg, transparent 0 38%, #fff 38% 45%, #c8102e 45% 55%, #fff 55% 62%, transparent 62%),
    #012169;
}

.site-header.is-scrolled .language-toggle,
.site-header.is-open .language-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-content: center;
  gap: 42px;
  overflow: hidden;
  padding: 124px 0 44px;
  color: #fff;
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 29, 59, 0.9) 0%, rgba(3, 29, 59, 0.6) 42%, rgba(3, 29, 59, 0.18) 72%),
    linear-gradient(180deg, rgba(3, 29, 59, 0.24), rgba(3, 29, 59, 0.62));
}

.hero-inner {
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 6.6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 29, 59, 0.2);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-navy {
  color: #fff;
  background: var(--navy);
}

.benefit-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 44px;
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow);
}

.benefit-panel article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
}

.benefit-panel h2 {
  margin: 0;
  font-size: 15px;
}

.benefit-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero .benefit-panel {
  display: none;
}

.benefits-section {
  padding: 0 0 88px;
  background: #fff;
}

.section {
  padding: 112px 0;
}

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

.section-offer {
  padding-top: 88px;
  background: linear-gradient(180deg, #f8fcff, #fff);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

h2,
h3,
h1,
p {
  overflow-wrap: anywhere;
}

.section-head h2,
.about-copy h2,
.gallery-section h2,
.reviews-layout h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.small-outline {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.trip-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(8, 41, 79, 0.11);
}

.trip-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

.trip-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trip-image-lake img {
  object-position: 30% 52%;
}

.trip-image-river img {
  object-position: 58% 52%;
  filter: saturate(1.08);
}

.trip-image-town img {
  object-position: 78% 48%;
}

.trip-image-thermal img {
  object-position: 48% 62%;
  filter: sepia(0.12) saturate(1.05);
}

.trip-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(8, 41, 79, 0.18);
}

.trip-body {
  display: grid;
  min-height: 255px;
  padding: 32px 24px 24px;
}

.trip-body h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

.trip-body p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.trip-body .trip-label + h3 + p {
  margin-top: 12px;
}

.trip-body .offer-meta,
.service-grid .offer-meta {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.trip-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
}

.trip-bottom strong {
  color: var(--green-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.trip-bottom small {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.trip-bottom a,
.trip-bottom button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.trip-bottom .cart-link,
.service-grid .service-actions .cart-link {
  width: auto;
  min-width: 116px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.trip-bottom .cart-link:hover,
.service-grid .service-actions .cart-link:hover {
  background: var(--green-dark);
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.about-copy > p {
  max-width: 530px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

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

.service-grid article {
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 41, 79, 0.08);
}

.service-media {
  margin: -24px -24px 20px;
  overflow: hidden;
  background: var(--paper);
}

.service-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.service-grid h3 {
  margin: 0;
  font-size: 20px;
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-price {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.service-grid .service-actions a {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 16px;
  border-radius: 999px;
}

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

.adventure-choice-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.adventure-choice-grid li {
  font-weight: 700;
}

.unavailable-offer {
  border-style: dashed !important;
  background: var(--paper) !important;
}

.adventure-choice-grid .tour-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.tour-header {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}

.tour-header img,
.tour-header::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-header img {
  z-index: -2;
  object-fit: cover;
}

.tour-header::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 29, 59, 0.88), rgba(3, 29, 59, 0.5) 48%, rgba(3, 29, 59, 0.14)),
    linear-gradient(180deg, rgba(3, 29, 59, 0.18), rgba(3, 29, 59, 0.72));
  content: "";
}

.tour-header-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.tour-header h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
}

.tour-header p {
  max-width: 740px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
}

.tour-content {
  padding: 82px 0;
  background: #fff;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.tour-main h2,
.tour-side h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
}

.tour-main p {
  color: var(--muted);
  font-size: 18px;
}

.tour-main ul,
.tour-side ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tour-main ul + ul {
  margin-top: 12px;
}

.tour-main li,
.tour-side li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.tour-main h3 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  font-weight: 900;
}

.tour-main li::before,
.tour-side li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.tour-section-list {
  margin-top: 34px;
}

.tour-section-list h3 {
  margin: 0;
  font-size: 24px;
}

.tour-section-list p {
  margin: 12px 0 0;
}

.tour-note-list li::before {
  content: "•";
}

.tour-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.info-card,
.booking-card {
  scroll-margin-top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 24px rgba(8, 41, 79, 0.08);
}

.booking-widget {
  scroll-margin-top: 112px;
  overflow: hidden;
  min-height: 650px;
  border-radius: 8px;
  background: #fff;
}

.booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  height: 100%;
  border: 0;
}

.booking-pickup-note {
  display: inline-flex;
  align-items: center;
  margin: 6px 0 22px;
  padding: 12px 16px;
  border: 1px solid rgba(44, 159, 54, 0.35);
  border-radius: 999px;
  background: rgba(44, 159, 54, 0.11);
  color: var(--green-dark);
  font-weight: 900;
}

.adventure-booking-widget {
  margin-top: 22px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.tour-gallery img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(8, 41, 79, 0.1);
}

.kulig-media-section {
  width: min(1220px, calc(100% - 48px));
  margin: 76px auto 0;
}

.media-section-head {
  margin-bottom: 24px;
}

.media-section-head h2 {
  margin: 4px 0 0;
}

.kulig-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.kulig-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(8, 41, 79, 0.1);
}

.kulig-photo-grid img:first-child,
.kulig-photo-grid img:nth-child(6) {
  grid-column: span 2;
}

.reels-heading {
  margin-top: 76px;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.reels-grid iframe {
  display: block;
  width: 100%;
  max-width: 267px;
  height: auto;
  aspect-ratio: 267 / 476;
  justify-self: center;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 41, 79, 0.12);
}

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

.related-section {
  padding: 76px 0;
  background: var(--paper);
}

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

.related-grid a {
  padding: 22px;
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 41, 79, 0.08);
  font-weight: 900;
}

.trust-badge {
  position: absolute;
  bottom: 22px;
  left: -58px;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  padding: 22px;
  border: 5px solid #d7edf8;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(8, 41, 79, 0.22);
}

.trust-badge span {
  font-size: 34px;
  line-height: 1;
}

.trust-badge strong,
.trust-badge small {
  display: block;
  font-size: 11px;
  line-height: 1.2;
}

.trust-badge small {
  font-size: 13px;
  font-weight: 900;
}

.gallery-section {
  padding-top: 46px;
  background: #fff;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-strip a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(8, 41, 79, 0.1);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-strip a:hover img {
  transform: scale(1.045);
}

.gallery-page {
  padding: 138px 0 92px;
  background: linear-gradient(180deg, #eef7fd, #fff 36%);
}

.online-booking-page {
  padding: 138px 0 92px;
  background: linear-gradient(180deg, #eef7fd, #fff 36%);
}

.online-booking-layout {
  display: grid;
  gap: 28px;
}

.online-booking-page .section-head {
  align-items: start;
}

.online-booking-page h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
}

.online-booking-card {
  background: #fff;
}

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

.gallery-page .section-head {
  align-items: start;
}

.gallery-page h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(8, 41, 79, 0.11);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card div {
  padding: 20px;
}

.gallery-card h2 {
  margin: 0;
  font-size: 22px;
}

.gallery-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-a {
  object-position: 22% 54%;
}

.gallery-b {
  object-position: 46% 54%;
}

.gallery-c {
  object-position: 68% 46%;
}

.gallery-d {
  object-position: 84% 48%;
  filter: sepia(0.18) saturate(1.12);
}

.gallery-e {
  object-position: 38% 38%;
}

.gallery-f {
  object-position: 74% 62%;
}

.reviews-band {
  padding: 80px 0;
  color: #fff;
  background: var(--navy-deep);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) repeat(2, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.reviews-band .section-kicker {
  color: #72d37a;
}

.reviews-layout figure {
  min-height: 250px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.reviews-layout blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.reviews-layout figcaption {
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
}

.booking-section {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(238, 247, 253, 0.94), rgba(238, 247, 253, 0.78)),
    url("assets/site/hero-bachledka.jpg") center / cover;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(430px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.booking-copy address {
  display: grid;
  gap: 8px;
  margin: 30px 0 0;
  font-style: normal;
}

.booking-copy address a {
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

.booking-copy address span {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.booking-cta-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-cta-panel h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.booking-cta-panel > p {
  margin: 0;
  color: var(--muted);
}

.booking-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-cta-actions .button {
  min-width: 0;
  text-align: center;
}

.booking-cta-panel .booking-cta-note {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.other-pickup[hidden] {
  display: none;
}

.contact-page {
  padding: 138px 0 92px;
  background:
    linear-gradient(90deg, rgba(238, 247, 253, 0.96), rgba(238, 247, 253, 0.84)),
    url("assets/site/hero-bachledka.jpg") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(430px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.contact-copy h1 {
  max-width: 640px;
  margin: 12px 0 20px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
}

.contact-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.contact-actions .button {
  min-width: 0;
  text-align: center;
}

.contact-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 24px;
}

.contact-card address {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-card address strong {
  color: var(--text);
  font-size: 20px;
}

.contact-card address a {
  width: fit-content;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

.footer-inner {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.62fr 0.8fr 0.82fr;
  gap: 44px;
  padding: 42px 0 32px;
}

.site-footer .brand {
  background: #fff;
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.legal-footer {
  margin-top: 0;
}

.legal-page {
  padding: 138px 0 92px;
  background: linear-gradient(180deg, #eef7fd, #fff 34%);
}

.legal-page h1 {
  max-width: 920px;
  margin: 12px 0 28px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.legal-content {
  max-width: 920px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(8, 41, 79, 0.09);
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.quad-time-note {
  margin: 18px 0 16px;
  padding: 16px 18px;
  border: 1px solid rgba(45, 154, 62, 0.26);
  border-radius: 10px;
  background: #f3fbf5;
}

.quad-time-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 15px;
  text-transform: uppercase;
}

.quad-time-note p {
  margin: 0;
}

.quad-time-note p + p {
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .language-toggle {
    justify-self: end;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 12px;
  }

  .desktop-offer-link {
    display: none;
  }

  .site-header.is-open .site-nav .mobile-offer-link {
    display: block !important;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

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

  .section-offer {
    padding-top: 76px;
  }

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

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

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

  .reviews-layout,
  .tour-layout,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kulig-photo-grid,
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 124px;
    padding-inline: 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(8, 41, 79, 0.12);
    backdrop-filter: blur(14px);
  }

  .brand {
    width: min(332px, calc(100vw - 92px));
    height: 116px;
    min-width: 0;
    padding: 6px 10px;
  }

  .nav-toggle {
    position: absolute;
    top: 44px;
    right: 74px;
  }

  .language-toggle {
    position: absolute;
    top: 43px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 0;
    align-items: end;
    align-content: start;
    gap: 28px;
    padding: 170px 0 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 29, 59, 0.26), rgba(3, 29, 59, 0.85) 62%),
      linear-gradient(90deg, rgba(3, 29, 59, 0.58), rgba(3, 29, 59, 0.12));
  }

  .hero-inner {
    width: calc(100% - 36px);
    max-width: 620px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .small-outline {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
    text-align: center;
  }

  .benefit-panel {
    width: calc(100% - 36px);
    max-width: 1180px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .section-offer {
    padding-top: 62px;
  }

  .section {
    padding: 76px 0;
  }

  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 36px);
    max-width: 1220px;
  }

  .section-head,
  .about-layout,
  .booking-layout,
  .footer-bottom {
    display: grid;
  }

  .section-head {
    align-items: start;
  }

  .about-layout,
  .booking-layout,
  .contact-layout,
  .reviews-layout,
  .tour-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .tour-header {
    min-height: 620px;
  }

  .tour-header-inner {
    width: calc(100% - 36px);
    max-width: 1080px;
    padding: 132px 0 58px;
  }

  .tour-header h1,
  .gallery-page h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .tour-header p,
  .tour-main p {
    font-size: 17px;
  }

  .tour-content,
  .related-section {
    padding: 58px 0;
  }

  .tour-side {
    position: static;
  }

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

  .kulig-media-section {
    width: calc(100% - 36px);
    margin-top: 58px;
  }

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

  .kulig-photo-grid img,
  .kulig-photo-grid img:first-child,
  .kulig-photo-grid img:nth-child(6) {
    grid-column: span 1;
    min-height: 140px;
  }

  .reels-heading {
    margin-top: 58px;
  }

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

  .trust-badge {
    right: 18px;
    bottom: 18px;
    left: auto;
    width: 120px;
    height: 120px;
  }

  .trip-grid,
  .service-grid,
  .gallery-strip,
  .gallery-page-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trip-body {
    min-height: 0;
    padding: 26px 20px 22px;
  }

  .trip-body h3,
  .gallery-card h2 {
    font-size: 21px;
  }

  .trip-bottom {
    display: grid;
    align-items: start;
  }

  .trip-bottom a,
  .trip-bottom button {
    width: 100%;
  }

  .reviews-layout figure {
    min-height: 0;
  }

  .booking-form {
    padding: 22px;
  }

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

  .contact-page {
    padding: 118px 0 72px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 114px;
    padding-inline: 14px;
  }

  .brand {
    width: min(300px, calc(100vw - 134px));
    height: 104px;
  }

  .hero-inner,
  .benefit-panel,
  .section-inner,
  .footer-inner,
  .footer-bottom,
  .tour-header-inner {
    width: calc(100% - 48px);
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 36px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-head h2,
  .about-copy h2,
  .gallery-section h2,
  .reviews-layout h2,
  .booking-copy h2 {
    font-size: 28px;
  }

  .benefit-panel article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .booking-copy address a {
    font-size: 20px;
  }

  .contact-copy h1 {
    font-size: clamp(31px, 9vw, 38px);
  }
}

@media (max-width: 760px) {
  .legal-page {
    padding: 112px 0 64px;
  }

  .legal-content {
    padding: 24px 20px;
  }

  .legal-content p {
    font-size: 16px;
  }
}
