@charset "UTF-8";

.facts-bar {
  background: var(--primary);
  color: var(--white);
  padding: 24px 60px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.fact {
  text-align: center;
}

.fact-num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

.fact-label {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero {
  height: 70vh;
  min-height: 480px;
}

.hero-content h1 {
  font-size: 64px;
}

.hero-content p {
  max-width: 500px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
}

.white-section {
  background: var(--white);
  padding: 0;
}

.highlights-grid,
.places-grid,
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.packages-grid.carousel-track {
  --slides-per-view: 4;
  --carousel-gap: 20px;
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
  margin-top: 20px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.packages-grid.carousel-track > * {
  flex: 0 0
    calc(
      (100% - (var(--carousel-gap) * (var(--slides-per-view) - 1))) /
        var(--slides-per-view)
    );
  min-width: 0;
}

.places-grid.carousel-track {
  --slides-per-view: 4;
  --carousel-gap: 20px;
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
  margin-top: 28px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.places-grid.carousel-track > * {
  flex: 0 0
    calc(
      (100% - (var(--carousel-gap) * (var(--slides-per-view) - 1))) /
        var(--slides-per-view)
    );
  min-width: 0;
}

.carousel-track--no-animate {
  transition: none !important;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel-btn {
  min-width: 54px;
  height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(26, 60, 94, 0.08);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(26, 60, 94, 0.08);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.highlight-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.highlight-card:hover img {
  transform: scale(1.08);
}

.highlight-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.highlight-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
}

.highlight-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.highlight-card-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}

.two-col img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.two-col-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.two-col-text p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

.list-item::before {
  content: "\2192";
  color: var(--accent);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.pkg-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  position: relative;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}

.pkg-card-img {
  position: relative;
  aspect-ratio: 16 / 9.2;
  overflow: hidden;
}

.pkg-card > img,
.pkg-card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  display: block;
}

.pkg-body {
  padding: 14px 16px 10px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(241, 171, 32, 0.16);
}

.pkg-location {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.pkg-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.18;
  min-height: 2.36em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-body p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.38;
  margin-bottom: auto;
  min-height: 2.76em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-meta {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 10px 0 0;
  border-top: 1px solid #f0f0f0;
}

.pkg-footer {
  padding: 10px 16px 14px;
  border-top: 1px solid #f0f0f0;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.pkg-footer > div {
  display: grid;
  gap: 5px;
  width: 100%;
}

.pkg-meta-item {
  font-size: 12.5px;
  color: #888;
}

.pkg-meta-item strong,
.pkg-footer .pkg-meta-item:first-child {
  color: var(--primary);
}

.btn-pkg {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.pkg-card:hover .btn-pkg {
  background: var(--accent);
  transform: translateY(-1px);
}

.pkg-duration {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  min-height: auto;
}

.btn-sm {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-sm:hover {
  background: var(--accent);
}

.destination-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 60px 74px;
}

.destination-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.destination-summary {
  background: var(--white);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.destination-summary h2,
.destination-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.destination-summary p,
.destination-panel p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

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

.quick-fact-card {
  background: var(--white);
  border: 1px solid rgba(26, 60, 94, 0.08);
  border-radius: 18px;
  padding: 22px;
}

.quick-fact-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.quick-fact-value {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.2;
}

.destination-panel {
  margin-top: 0;
}

.destination-layout > .destination-panel:first-child {
  margin-top: 0;
}

.destination-panel > .section-label {
  margin-bottom: 14px;
}

.destination-panel > h2 {
  margin-bottom: 20px;
}

.destination-layout > * + * {
  margin-top: 64px;
}

.offer-grid,
.places-grid,
.things-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.places-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.offer-card,
.thing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.05);
}

.offer-card h3,
.place-card h3,
.thing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

.offer-card p,
.thing-card p,
.place-card p {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.75;
}

.place-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.05);
}

.place-card--text {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 0;
  padding: 22px 24px;
  overflow: visible;
  border: 1px solid rgba(26, 60, 94, 0.08);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.045);
}

.place-index {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.place-card--text .place-card-body {
  padding: 0;
}

.place-card--text h3 {
  margin-bottom: 7px;
}

.place-card img {
  display: block;
}

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

.place-card-body {
  padding: 22px;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 28px;
}

.history-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(26, 60, 94, 0.08);
}

.history-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section h2 {
  font-size: 42px;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 420px;
  }

  .highlights-grid,
  .packages-grid,
  .offer-grid,
  .places-grid,
  .things-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .destination-layout {
    padding: 46px 20px 58px;
  }

  .destination-layout > * + * {
    margin-top: 54px;
  }

  .destination-intro,
  .history-grid,
  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-bar {
    padding: 20px;
    gap: 12px;
  }

  .packages-grid.carousel-track {
    --carousel-gap: 18px;
  }

  .packages-grid.carousel-track > * {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }

  .places-grid.carousel-track {
    --carousel-gap: 18px;
  }

  .places-grid.carousel-track > * {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 380px;
  }

  .destination-layout {
    padding: 40px 16px 52px;
  }

  .destination-layout > * + * {
    margin-top: 48px;
  }

  .destination-summary,
  .offer-card,
  .thing-card,
  .place-card,
  .quick-fact-card,
  .pkg-card {
    border-radius: 18px;
  }

  .destination-summary,
  .offer-card,
  .thing-card {
    padding: 22px 18px;
  }

  .destination-summary h2,
  .destination-panel h2 {
    font-size: 28px;
  }

  .quick-fact-value {
    font-size: 22px;
  }

  .facts-bar {
    padding: 16px;
    gap: 10px;
  }

  .fact-num {
    font-size: 24px;
  }

  .pkg-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-sm {
    width: 100%;
  }

  .packages-grid.carousel-track {
    --carousel-gap: 16px;
  }

  .packages-grid.carousel-track > * {
    flex-basis: 100%;
  }

  .places-grid.carousel-track {
    --carousel-gap: 16px;
  }

  .places-grid.carousel-track > * {
    flex-basis: 100%;
  }

  .carousel-btn {
    min-width: 44px;
    height: 40px;
    font-size: 24px;
  }
}
