:root {
  --bg: #f7f4ee;
  --panel: rgba(255, 255, 255, 0.88);
  --text: #1d1b17;
  --muted: #6d665c;
  --line: rgba(29, 27, 23, 0.12);
  --accent: #1b5d77;
  --accent-2: #0c8ca1;
  --accent-soft: rgba(12, 140, 161, 0.12);
  --shadow: 0 18px 45px rgba(19, 22, 24, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(12, 140, 161, 0.12), transparent 40%),
    radial-gradient(circle at 95% 10%, rgba(27, 93, 119, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfaf7, #f3eee4 60%, #efe9de);
  line-height: 1.45;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 244, 238, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 0;
}

.brand-icon {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(16, 42, 56, 0.2);
}

.brand-text {
  display: inline-block;
  white-space: nowrap;
}

.brand span {
  color: var(--muted);
  font-weight: 500;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav-close {
  display: none;
}

.nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.nav a,
.nav-link {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link-button {
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav a.is-active,
.nav a:hover,
.nav-link:hover,
.nav-item.is-active > .nav-link {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.nav-item {
  position: relative;
}

.nav-item-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item-mega .nav-link::after {
  content: "\25BE";
  font-size: 0.75em;
  opacity: 0.8;
}

.mega-menu-panel {
  position: absolute;
  top: calc(100% + 0.15rem);
  right: 0;
  width: min(980px, calc(100vw - 2rem));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(19, 22, 24, 0.12);
  padding: 1rem;
  display: none;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.nav-item-mega.is-open .mega-menu-panel {
  display: block;
}

.mobile-nav-backdrop {
  display: none;
  pointer-events: none;
}

.mobile-nav-backdrop[hidden] {
  display: none !important;
}

.mega-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.mega-menu-head .eyebrow {
  margin-bottom: 0.35rem;
}

.mega-menu-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.mega-menu-cta {
  white-space: nowrap;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.75rem;
}

.mega-menu-col {
  display: grid;
  gap: 0.45rem;
}

.mega-menu-link {
  display: grid;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  align-content: start;
  justify-items: center;
  text-align: center;
}

.mega-menu-link:hover,
.mega-menu-link.is-current {
  border-color: rgba(12, 140, 161, 0.2);
  background: rgba(12, 140, 161, 0.06);
}

.mega-menu-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.2;
}

.mega-menu-thumb {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #dfe8ec;
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 16px rgba(18, 24, 27, 0.06);
}

.mega-menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu-link small {
  color: var(--muted);
  line-height: 1.25;
}

.site-main {
  flex: 1;
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.25rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
}

.hero-copy {
  margin: 1rem 0 1.2rem;
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 140, 161, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
  color: var(--text);
}

.btn-map {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.18);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 247, 241, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.9rem;
}

.hero-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.destination-intro {
  margin-top: 0.5rem;
}

.destination-story-panel {
  display: flow-root;
}

.destination-article {
  margin-top: 0.35rem;
}

.destination-float-figure {
  float: left;
  width: min(34%, 390px);
  margin: 0.2rem 1rem 0.75rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 25px rgba(18, 24, 27, 0.05);
  background: #dfe8ec;
}

.destination-float-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-text p {
  margin-top: 0;
}

.destination-text p + p {
  margin-top: 0.9rem;
}

.destination-rich-copy p {
  margin: 0;
}

.destination-rich-copy p + p {
  margin-top: 0.9rem;
}

.destination-rich-copy strong {
  color: var(--text);
  font-weight: 700;
}

.destination-more {
  margin-top: 0.75rem;
}

.destination-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid rgba(12, 140, 161, 0.25);
  background: rgba(12, 140, 161, 0.08);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.destination-more summary::-webkit-details-marker {
  display: none;
}

.destination-more .more-label-close {
  display: none;
}

.destination-more[open] .more-label-open {
  display: none;
}

.destination-more[open] .more-label-close {
  display: inline;
}

.destination-more[open] summary {
  margin-bottom: 0.6rem;
}

.destination-more-body p {
  margin: 0;
}

.destination-sort-form {
  min-width: 220px;
}

.destination-sort-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.feature-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.section {
  padding: 1.25rem 0 2.5rem;
}

.section-tight {
  padding-top: 1.25rem;
}

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

.section-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

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

.hotel-card {
  background: rgba(255, 255, 255, 1);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(18, 24, 27, 0.06);
  display: flex;
  flex-direction: column;
}

.inline-tours-block {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(7, 22, 31, 0.97), rgba(11, 47, 63, 0.96));
  border: 1px solid rgba(126, 232, 244, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(8, 26, 36, 0.34);
  padding: 1rem 1.6rem 2rem;
  margin: 0.45rem 0 0.9rem;
}

.inline-tours-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.inline-tours-head .eyebrow {
  margin: 0;
  color: #e4fbff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  background: transparent;
}

.inline-tours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: none;
  margin: 0;
  padding: 0.1rem 0;
}

.inline-tours-block .hotel-card {
  max-width: 280px;
  margin: 0 auto;
}

.inline-tours-block .card-image-wrap {
  aspect-ratio: 16 / 10;
}

.inline-tours-block .card-body {
  padding: 0.68rem;
  gap: 0.42rem;
}

.inline-tours-block .card-topline {
  font-size: 0.8rem;
}

.inline-tours-block .card-body h3 {
  font-size: 0.95rem;
}

.inline-tours-block .card-body p {
  font-size: 0.84rem;
  line-height: 1.35;
}

.inline-tours-block .card-departing {
  font-size: 0.86rem;
}

.inline-tours-block .card-price-value {
  font-size: 1.1rem;
}

.inline-tours-block .card-price-badge {
  font-size: 0.78rem;
  padding: 0.32rem 0.56rem;
}

.inline-tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(152, 241, 250, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: #13212a;
  text-decoration: none;
}

.inline-tour-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: #d7e8ed;
}

.inline-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-tour-body {
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem 0.56rem 0.58rem;
}

.inline-tour-name {
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.25;
}

.inline-tour-departing {
  font-size: 0.75rem;
  color: #0c8ca1;
  font-weight: 700;
}

.inline-tour-price {
  font-size: 0.82rem;
  color: #0f4052;
  font-weight: 800;
}

.ad-banner-card {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(12, 18, 24, 0.12);
  background: #0d2230;
}

.ad-banner-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  height: clamp(220px, 27vw, 360px);
  color: #fff;
  text-decoration: none;
}

.ad-banner-media {
  position: relative;
  display: block;
  min-height: 100%;
  height: 100%;
  background: #173244;
}

.ad-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 34, 48, 0.06) 0%, rgba(13, 34, 48, 0.38) 55%, rgba(13, 34, 48, 0.75) 100%),
    linear-gradient(180deg, rgba(6, 18, 26, 0.05), rgba(6, 18, 26, 0.25));
}

.ad-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.15rem 1.1rem 1.2rem;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(18, 183, 196, 0.18), rgba(18, 183, 196, 0) 58%),
    linear-gradient(135deg, rgba(10, 24, 34, 0.96), rgba(15, 37, 51, 0.94));
}

.ad-banner-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #d9fbff;
  border: 1px solid rgba(114, 241, 255, 0.22);
  background: rgba(114, 241, 255, 0.08);
}

.ad-banner-title {
  display: block;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
}

.ad-banner-copy {
  display: block;
  color: rgba(241, 248, 252, 0.86);
  font-size: 0.92rem;
  line-height: 1.4;
}

.ad-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #05202b;
  background: linear-gradient(135deg, #c8f8ff, #76ecff);
  box-shadow: 0 10px 22px rgba(13, 205, 232, 0.22);
}

.ad-hotel-card {
  position: relative;
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(18, 24, 27, 0.08);
  background: #102433;
}

.ad-hotel-card.is-col-2 {
  grid-column: 2 / span 1;
}

.ad-hotel-card.is-col-3 {
  grid-column: 3 / span 1;
}

.ad-hotel-card.is-col-4 {
  grid-column: 4 / span 1;
}

.ad-hotel-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  color: #fff;
  text-decoration: none;
}

.ad-hotel-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #153246;
}

.ad-hotel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-hotel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 32, 0.05) 0%, rgba(8, 22, 32, 0.28) 40%, rgba(8, 22, 32, 0.92) 100%),
    linear-gradient(135deg, rgba(14, 199, 214, 0.12), rgba(14, 199, 214, 0) 55%);
}

.ad-hotel-content {
  position: absolute;
  inset: auto 0 1rem 0;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  padding: 0.75rem;
}

.ad-hotel-title {
  display: block;
  font-weight: 800;
  line-height: 1.2;
  font-size: 0.98rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ad-hotel-copy {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(245, 249, 252, 0.9);
  font-size: 0.82rem;
  line-height: 1.35;
}

.ad-hotel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #062330;
  background: rgba(206, 248, 255, 0.95);
}

.card-image-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  background: #e9edf0;
}

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

.card-body {
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.rating {
  color: #8a6a12;
}

.card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.card-departing {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0c8ca1 !important;
  margin-top: -0.15rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.83rem;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}

.card-meta span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta span.card-price-value {
  font-weight: 900;
  font-size: 1.42rem;
  line-height: 1.05;
  color: #0a3344;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.card-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: 1px solid rgba(12, 140, 161, 0.25);
  box-shadow: 0 8px 16px rgba(12, 140, 161, 0.18);
  font-weight: 700;
}

.card-submeta {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-action {
  margin-top: 0.1rem;
}

.card-action .card-price-badge {
  text-decoration: none;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.hotels-content-wrap {
  display: grid;
  gap: 1rem;
}

.hotels-filters-panel {
  margin-bottom: 0.25rem;
}

.filters label,
.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

select,
input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(29, 27, 23, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

textarea {
  resize: vertical;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  border: 1px dashed rgba(29, 27, 23, 0.18);
  color: var(--muted);
}

.pagination {
  display: flex;
  gap: 0.45rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pagination a {
  min-width: 2.2rem;
  text-align: center;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.pagination .pagination-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.92rem;
}

.pagination .pagination-meta.is-disabled {
  opacity: 0.6;
}

.pagination a.is-current {
  background: var(--accent-soft);
  border-color: rgba(12, 140, 161, 0.3);
  color: var(--accent);
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.detail-copy {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.75rem 0 0.8rem;
  max-width: 65ch;
}

.detail-link-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0 0 0.85rem;
}

.detail-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--text);
  font-size: 0.92rem;
}

.detail-meta span {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.detail-meta .detail-price-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(12, 140, 161, 0.3);
  color: #fff;
  box-shadow: 0 8px 18px rgba(12, 140, 161, 0.15);
  font-weight: 700;
}

.cta-panel {
  display: grid;
  gap: 0.75rem;
}

.cta-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 20px rgba(18, 24, 27, 0.05);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.section-head-compact {
  margin-bottom: 0.75rem;
}

.section-head-compact h2 {
  font-size: 1.25rem;
}

.offer-sync-meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-list li {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
}

.detail-description {
  margin: 0;
  color: var(--text);
}

.info-list {
  display: grid;
  gap: 0.65rem;
}

.info-list a {
  color: var(--accent);
}

.detail-prices-panel,
.detail-reviews-panel {
  margin-top: 1rem;
}

.detail-inline-grid {
  margin-top: 1rem;
}

.offer-list {
  display: grid;
  gap: 0.65rem;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.offer-provider {
  font-weight: 700;
}

.offer-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.offer-price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.offer-btn {
  padding: 0.55rem 0.8rem;
}

.offer-btn-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.empty-block {
  display: grid;
  gap: 0.75rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.78);
}

.review-head {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  background: #e9edf0;
  flex: 0 0 40px;
}

.review-author {
  font-weight: 700;
}

.review-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-text {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

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

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.alert {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(43, 133, 88, 0.1);
  border-color: rgba(43, 133, 88, 0.2);
  color: #1d6a45;
}

.alert-error {
  background: rgba(170, 55, 55, 0.08);
  border-color: rgba(170, 55, 55, 0.15);
  color: #7d2929;
}

.alert-error ul {
  margin: 0;
  padding-left: 1rem;
}

.prose p {
  margin-top: 0;
}

.prose p + p {
  margin-top: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0 0.8rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 1rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(15, 36, 54, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 14px 30px rgba(15, 36, 54, 0.12);
  cursor: pointer;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top[hidden] {
  display: inline-flex;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 18px 34px rgba(15, 36, 54, 0.16);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(13, 110, 253, 0.4);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.back-to-top span {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.reports-accordion {
  display: grid;
  gap: 0.9rem;
}

.report-month {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  overflow: clip;
}

.report-month-head {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.report-month-head::-webkit-details-marker {
  display: none;
}

.report-month-title {
  font-weight: 700;
}

.report-month-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.report-month-body {
  border-top: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.report-kpi-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.6rem 0.7rem;
  display: grid;
  gap: 0.25rem;
}

.report-kpi span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.report-kpi strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.report-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.report-panel-hotels {
  grid-column: span 8;
}

.report-panel-providers {
  grid-column: span 4;
}

.report-panel-tours,
.report-panel-ads {
  grid-column: span 6;
}

.report-panel h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  text-align: left;
  padding-left: 0.1rem;
}

.report-table-wrap {
  max-height: 540px;
  overflow-x: auto;
  overflow-y: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.report-table th,
.report-table td {
  text-align: left;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}

.report-table th {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.report-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}

.report-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.report-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.35rem;
}

.report-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.report-list strong {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.report-files {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.report-files code {
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .ad-hotel-card.is-col-2,
  .ad-hotel-card.is-col-3,
  .ad-hotel-card.is-col-4 {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .detail-hero,
  .detail-columns {
    grid-template-columns: 1fr;
  }

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

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

  .inline-tours-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-banner-link {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .ad-banner-media {
    aspect-ratio: 16 / 7;
    height: auto;
  }

  .ad-banner-content {
    gap: 0.55rem;
  }

  .ad-hotel-link {
    min-height: 220px;
  }

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

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

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

  .report-panel-hotels {
    grid-column: span 6;
  }

  .report-panel-providers,
  .report-panel-tours,
  .report-panel-ads {
    grid-column: span 3;
  }

  .report-panel {
    min-width: 0;
  }

  .report-panel .report-table-wrap,
  .report-panel .report-list {
    max-height: 300px;
  }

  .report-table-wrap,
  .report-list {
    max-height: 300px;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .mega-menu-panel {
    right: auto;
    left: 0;
    width: min(760px, calc(100vw - 2rem));
  }

  .mega-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-row {
    align-items: center;
    flex-direction: row;
  }

  .brand-text {
    display: none;
  }

  .brand-icon {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 55;
  }

  body.nav-open .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 61;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(9, 16, 23, 0.44);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
  }

  .mobile-nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0.95rem 0.9rem 1.1rem;
    background: rgba(247, 244, 238, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 26px rgba(12, 19, 24, 0.16);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-y: auto;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav-link {
    width: 100%;
    padding: 0.62rem 0.75rem;
    border-radius: 12px;
    font-size: 0.98rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item-mega::after {
    display: none;
  }

  .nav-item-mega .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu-panel {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.82);
  }

  .mega-menu-head {
    display: none;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .mega-menu-col {
    gap: 0.25rem;
  }

  .mega-menu-link {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    padding: 0.45rem 0.35rem;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .mega-menu-thumb {
    display: none;
  }

  .destination-float-figure {
    float: none;
    width: 100%;
    margin: 0.25rem 0 0.8rem;
  }

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

  .inline-tours-grid {
    grid-template-columns: 1fr;
  }

  .inline-tours-block .hotel-card {
    max-width: none;
    width: auto;
    margin: 0;
  }

  .ad-banner-media {
    aspect-ratio: 16 / 9;
  }

  .ad-banner-title {
    font-size: 1.05rem;
  }

  .ad-hotel-link {
    aspect-ratio: 4 / 3;
  }

  .offer-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.5rem 0.65rem;
  }

  .back-to-top span {
    font-size: 0.8rem;
  }

  .report-kpi-grid {
    grid-template-columns: 1fr;
  }

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

  .report-panel-hotels,
  .report-panel-providers,
  .report-panel-tours,
  .report-panel-ads {
    grid-column: auto;
  }

  .report-panel {
    min-width: 0;
  }

  .report-month-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-table-wrap,
  .report-list {
    max-height: 220px;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
