html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--twostars-color-night);
  background: linear-gradient(180deg, #f5f1e8 0%, #efe7d8 42%, #e8d5b7 100%);
  font-family: var(--twostars-font-body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  width: min(100% - 2rem, var(--twostars-content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.15rem 0 0.9rem;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.95), rgba(26, 20, 16, 0.78));
  border-bottom: 1px solid rgba(232, 213, 183, 0.12);
  box-shadow: 0 12px 34px rgba(26, 20, 16, 0.14);
}

.site-shell--header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2.25rem;
  align-items: center;
  padding: 0.25rem 0;
}

.site-branding {
  min-width: 0;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.site-branding__logo img {
  max-height: 58px;
  width: auto;
}

.site-branding__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: var(--twostars-color-night);
  background: linear-gradient(135deg, var(--twostars-color-sand) 0%, #f1e4c9 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  font-family: var(--twostars-font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-branding__text {
  display: grid;
  gap: 0.2rem;
}

.site-branding__eyebrow {
  color: rgba(245, 241, 232, 0.68);
  font-family: var(--twostars-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-title {
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 999px;
  color: var(--twostars-color-cloud);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav-toggle__label {
  font-family: var(--twostars-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.site-nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-width: 0;
}

.site-navigation {
  margin-left: auto;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu a {
  position: relative;
  color: rgba(245, 241, 232, 0.82);
  font-family: var(--twostars-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--twostars-color-dune), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.site-menu a:hover::after,
.site-menu .current-menu-item > a::after,
.site-menu .current_page_item > a::after {
  transform: scaleX(1);
}

.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
  color: var(--twostars-color-cloud);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__link {
  color: rgba(245, 241, 232, 0.8);
  font-family: var(--twostars-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header__button {
  min-height: 48px;
  padding-inline: 1.35rem;
  color: var(--twostars-color-cloud);
  background: linear-gradient(135deg, var(--twostars-color-dune) 0%, var(--twostars-color-forest) 100%);
  font-family: var(--twostars-font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-content {
  min-height: 70vh;
}

.elementor-template-full-width .site-content,
.elementor-page .site-content {
  min-height: auto;
}

.site-footer {
  margin-top: 4rem;
  color: var(--twostars-color-cloud);
  background:
    radial-gradient(circle at top left, rgba(201, 163, 95, 0.18), transparent 22%),
    linear-gradient(180deg, #17120f 0%, #1a1410 100%);
}

.site-shell--footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(220px, 0.7fr);
  gap: 2rem;
  padding: 4.75rem 0 2.8rem;
}

.site-footer__eyebrow,
.site-footer__nav-label {
  margin: 0 0 0.8rem;
  color: rgba(217, 118, 66, 0.9);
  font-family: var(--twostars-font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--twostars-font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
}

.site-footer__text {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(245, 241, 232, 0.74);
  font-family: var(--twostars-font-body);
  line-height: 1.8;
}

.site-menu--footer {
  display: grid;
  gap: 0.8rem;
}

.site-menu--footer a {
  color: rgba(245, 241, 232, 0.82);
  font-family: var(--twostars-font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-menu--footer a::after {
  display: none;
}

.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.site-footer__contact-link {
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__button {
  justify-self: start;
  color: var(--twostars-color-cloud);
  background: linear-gradient(135deg, var(--twostars-color-dune) 0%, var(--twostars-color-forest) 100%);
  font-family: var(--twostars-font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__subfooter {
  border-top: 1px solid rgba(248, 243, 234, 0.1);
}

.site-footer__subfooter-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
}

.site-footer__copyright,
.site-footer__legal {
  margin: 0;
  color: rgba(245, 241, 232, 0.56);
  font-family: var(--twostars-font-body);
  font-size: 0.9rem;
}

.site-content {
  min-height: 70vh;
}

.site-stack {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
}

.site-hero {
  padding: 5rem 0 2rem;
}

.site-hero__content {
  max-width: 48rem;
  padding: 2rem;
  border-radius: var(--twostars-radius-lg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--twostars-shadow-soft);
}

.site-hero__content--wide {
  max-width: 64rem;
}

.site-intro,
.archive-description {
  max-width: 42rem;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--twostars-color-dune);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.content-card {
  padding: 1.5rem;
  border: 1px solid rgba(111, 75, 45, 0.12);
  border-radius: var(--twostars-radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--twostars-shadow-soft);
}

.content-card__title {
  margin-top: 0;
}

.content-block,
.faq-stack,
.story-layout,
.page-layout {
  display: grid;
  gap: 1.5rem;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  max-width: 44rem;
}

.section-heading h2,
.story-hero h1 {
  margin: 0;
}

.content-block--warm .content-card {
  background: rgba(250, 243, 231, 0.92);
}

.split-layout,
.story-layout__content {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-layout--hero {
  align-items: stretch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-hero {
  display: grid;
  gap: 0.75rem;
}

.tour-layout {
  display: grid;
  gap: 2rem;
}

.tour-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: start;
}

.tour-sidebar,
.tour-summary,
.tour-panels {
  display: grid;
  gap: 1rem;
}

.tour-sidebar {
  padding: 1.5rem;
  border-radius: var(--twostars-radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--twostars-shadow-soft);
}

.tour-summary,
.tour-card-meta {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tour-summary li,
.tour-card-meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(111, 75, 45, 0.12);
}

.tour-summary li:last-child,
.tour-card-meta li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tour-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--twostars-color-white);
  background: var(--twostars-color-night);
  text-decoration: none;
}

.tour-layout__content {
  display: grid;
  gap: 1.5rem;
}

.text-link {
  color: var(--twostars-color-earth);
  font-weight: 700;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
}

.booking-panel__list {
  display: grid;
  gap: 0.75rem;
}

.booking-panel__item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(111, 75, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.tour-booking-note {
  margin: 0;
  color: var(--twostars-color-earth);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .site-shell--footer {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .story-layout__content,
  .tour-hero {
    grid-template-columns: 1fr;
  }

  .site-shell--header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav-panel {
    display: none;
    grid-column: 1 / -1;
    padding: 1.15rem 0 0.5rem;
    border-top: 1px solid rgba(248, 243, 234, 0.08);
  }

  .site-header.is-nav-open .site-nav-panel {
    display: grid;
    gap: 1.25rem;
  }

  .site-header.is-nav-open .site-nav-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-nav-open .site-nav-toggle__icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-nav-open .site-nav-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-navigation {
    margin-left: 0;
  }

  .site-menu {
    display: grid;
    gap: 1rem;
  }

  .site-menu a {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .site-header__button,
  .site-footer__button {
    justify-content: center;
  }

  .site-footer__subfooter-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    margin-top: 3rem;
  }
}

.twostars-editorial-archive,
.twostars-article {
  padding: 4rem 0 5rem;
}

.twostars-editorial-archive__hero,
.twostars-article__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(111, 75, 45, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(215, 185, 140, 0.3), transparent 26%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(247, 238, 224, 0.92));
  box-shadow: var(--twostars-shadow-soft);
}

.twostars-editorial-archive__hero::after,
.twostars-article__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 122, 61, 0.14), transparent 70%);
  transform: translate(25%, 25%);
  pointer-events: none;
}

.twostars-editorial-archive__eyebrow,
.twostars-article__eyebrow,
.twostars-article__sidebar-label {
  margin: 0 0 0.75rem;
  color: var(--twostars-color-dune);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.twostars-editorial-archive__title,
.twostars-article__title {
  margin: 0;
  max-width: 50rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.twostars-editorial-archive__description,
.twostars-article__excerpt {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(23, 32, 38, 0.82);
  font-size: 1.06rem;
}

.twostars-editorial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.twostars-editorial-card,
.twostars-editorial-faq-card,
.twostars-article__sidebar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(111, 75, 45, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--twostars-shadow-soft);
}

.twostars-editorial-card__media {
  display: block;
  aspect-ratio: 4 / 3;
}

.twostars-editorial-card__media img,
.twostars-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.twostars-editorial-card__body,
.twostars-editorial-faq-card,
.twostars-article__sidebar-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.twostars-editorial-card__type {
  margin: 0 0 0.75rem;
  color: var(--twostars-color-dune);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.twostars-editorial-card__title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.twostars-editorial-card__meta,
.twostars-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: rgba(23, 32, 38, 0.68);
  font-size: 0.92rem;
}

.twostars-editorial-card__meta li,
.twostars-article__meta span {
  position: relative;
}

.twostars-editorial-card__meta li + li::before,
.twostars-article__meta span + span::before {
  content: "•";
  margin-right: 0.75rem;
  color: var(--twostars-color-dune);
}

.twostars-editorial-card__excerpt,
.twostars-editorial-faq-card__excerpt {
  margin: 1rem 0 0;
  color: rgba(23, 32, 38, 0.78);
}

.twostars-editorial-card__link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--twostars-color-earth);
  font-weight: 700;
  text-decoration: none;
}

.twostars-editorial-card--quote .twostars-editorial-card__quote {
  margin: 0 0 1rem;
  color: var(--twostars-color-earth);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
}

.twostars-editorial-faq-list {
  display: grid;
  gap: 1rem;
}

.twostars-editorial-faq-card__title {
  margin: 0;
  font-size: 1.35rem;
}

.twostars-editorial-pagination {
  margin-top: 2rem;
}

.twostars-editorial-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.twostars-editorial-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 75, 45, 0.14);
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.twostars-editorial-pagination .current {
  color: var(--twostars-color-white);
  background: var(--twostars-color-night);
}

.twostars-article__layout {
  display: grid;
  gap: 2rem;
}

.twostars-article__media {
  overflow: hidden;
  margin-top: 1.5rem;
  border-radius: 22px;
  aspect-ratio: 16 / 8;
}

.twostars-article__content {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
}

.twostars-article__body {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(111, 75, 45, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--twostars-shadow-soft);
}

.twostars-article__body > :first-child {
  margin-top: 0;
}

.twostars-article__body > :last-child {
  margin-bottom: 0;
}

.twostars-article__sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.twostars-article__sidebar-card h2 {
  margin-top: 0;
}

.twostars-article__related-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  margin: 0;
}

@media (max-width: 720px) {
  .twostars-editorial-archive__hero,
  .twostars-article__hero,
  .twostars-article__body {
    padding: 1.5rem;
  }

  .twostars-article__content {
    grid-template-columns: 1fr;
  }
}

/* --- 2026 Brand Refresh Overrides --- */

body {
  color: var(--twostars-color-night);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7ede2 46%, #ffffff 100%);
  font-family: var(--twostars-font-body);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--twostars-color-night);
  font-family: var(--twostars-font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

p,
li,
dd,
dt,
blockquote,
input,
select,
textarea,
button {
  font-family: var(--twostars-font-body);
}

.site-shell {
  width: min(100% - 2.5rem, var(--twostars-content-width));
}

.site-header {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: 0 2px 12px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(13, 27, 42, 0.1);
}

.site-shell--header {
  gap: 1rem 1.5rem;
}

.site-branding__link {
  gap: 0.85rem;
}

.site-branding__logo img,
.site-branding__image {
  max-height: 64px;
  width: auto;
}

.site-branding__mark {
  display: inline-flex;
  gap: 0.1rem;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--twostars-color-sand);
  background: transparent;
  box-shadow: none;
  font-family: var(--twostars-font-heading);
  font-size: 1rem;
  transform: translateY(-0.45rem);
}

.site-branding__copy {
  display: grid;
  gap: 0.15rem;
}

.site-title {
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-branding__eyebrow {
  color: rgba(27, 58, 107, 0.75);
  font-family: var(--twostars-font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav-toggle {
  border: 1px solid rgba(27, 58, 107, 0.14);
  color: var(--twostars-color-earth);
  background: rgba(255, 255, 255, 0.74);
}

.site-nav-toggle__label {
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-menu {
  gap: 1.6rem;
}

.site-menu a {
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-menu a::after {
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--twostars-color-dune), var(--twostars-color-forest));
}

.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
  color: var(--twostars-color-dune);
}

.site-nav-panel {
  gap: 1.25rem;
}

.site-header__actions {
  gap: 0.85rem;
}

.site-header__button,
.site-footer__button,
.tour-booking-button {
  min-height: 50px;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  color: var(--twostars-color-white);
  background: linear-gradient(90deg, var(--twostars-color-dune) 0%, #ff8c61 100%);
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.22);
  font-family: var(--twostars-font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.site-header__button:hover,
.site-footer__button:hover,
.tour-booking-button:hover,
.site-header__button:focus-visible,
.site-footer__button:focus-visible,
.tour-booking-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 18px 38px rgba(255, 107, 53, 0.28);
}

.site-footer {
  margin-top: 4rem;
  color: var(--twostars-color-white);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.12), transparent 24%),
    linear-gradient(180deg, #10233f 0%, #0d1b2a 100%);
}

.site-shell--footer {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
}

.site-footer__brand-lockup {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer__brand-stars {
  display: inline-flex;
  gap: 0.1rem;
  margin-top: 0.15rem;
  color: var(--twostars-color-sand);
  font-size: 1rem;
}

.site-footer__eyebrow,
.site-footer__nav-label {
  color: var(--twostars-color-dune);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-footer__title {
  max-width: none;
  color: var(--twostars-color-white);
  font-family: var(--twostars-font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.94;
}

.site-footer__text,
.site-footer__cta-text {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--twostars-font-body);
  font-size: 0.95rem;
  line-height: 1.75;
}

.site-footer__contact,
.site-footer__cta {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.site-footer__contact-link {
  color: var(--twostars-color-white);
  font-family: var(--twostars-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer__contact-link--subtle {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--twostars-font-body);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-menu--footer {
  gap: 0.8rem;
}

.site-menu--footer a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--twostars-font-body);
  font-size: 0.92rem;
}

.site-menu--footer a:hover,
.site-menu--footer a:focus-visible {
  color: var(--twostars-color-forest);
}

.site-footer__subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copyright,
.site-footer__legal {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--twostars-font-body);
  font-size: 0.84rem;
}

.eyebrow,
.twostars-editorial-archive__eyebrow,
.twostars-article__eyebrow,
.twostars-article__sidebar-label,
.twostars-editorial-card__type {
  color: var(--twostars-color-dune);
  font-family: var(--twostars-font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-intro,
.archive-description,
.twostars-editorial-archive__description,
.twostars-article__excerpt,
.twostars-editorial-card__excerpt,
.twostars-editorial-faq-card__excerpt {
  color: rgba(13, 27, 42, 0.76);
  font-family: var(--twostars-font-body);
  font-size: 1rem;
  line-height: 1.8;
}

.content-card,
.tour-sidebar,
.twostars-editorial-card,
.twostars-editorial-faq-card,
.twostars-article__sidebar-card,
.twostars-article__body {
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--twostars-shadow-soft);
}

.twostars-editorial-archive__hero,
.twostars-article__hero {
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(27, 58, 107, 0.98), rgba(13, 27, 42, 0.98));
  box-shadow: var(--twostars-shadow-hard);
}

.twostars-editorial-archive__hero::after,
.twostars-article__hero::after {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.28), transparent 72%);
  transform: translate(20%, 20%);
}

.twostars-editorial-archive__title,
.twostars-article__title,
.story-hero h1,
.tour-hero h1 {
  color: var(--twostars-color-white);
  font-family: var(--twostars-font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.94;
}

.twostars-editorial-archive__description,
.twostars-article__excerpt {
  color: rgba(255, 255, 255, 0.82);
}

.twostars-editorial-card__title,
.twostars-editorial-faq-card__title,
.site-footer__contact-link,
.tour-summary strong,
.tour-card-meta strong {
  font-family: var(--twostars-font-heading);
  font-weight: 700;
}

.twostars-editorial-card__title {
  font-size: 1.7rem;
  line-height: 1.05;
}

.twostars-editorial-card__link,
.text-link {
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.twostars-editorial-card__link:hover,
.text-link:hover,
.twostars-editorial-card__link:focus-visible,
.text-link:focus-visible {
  color: var(--twostars-color-dune);
}

.twostars-editorial-pagination .page-numbers {
  border-radius: 10px;
  border: 1px solid rgba(27, 58, 107, 0.1);
  color: var(--twostars-color-earth);
}

.twostars-editorial-pagination .current {
  background: var(--twostars-color-earth);
}

.tour-summary li,
.tour-card-meta li {
  border-bottom: 1px solid rgba(27, 58, 107, 0.08);
  color: rgba(13, 27, 42, 0.74);
  font-family: var(--twostars-font-body);
  font-size: 0.95rem;
}

.tour-booking-note {
  color: rgba(13, 27, 42, 0.7);
  font-family: var(--twostars-font-body);
}

body.twostars-elementor-ready .elementor-widget-heading .elementor-heading-title,
body.twostars-elementor-ready .elementor-image-box-title,
body.twostars-elementor-ready .elementor-icon-box-title {
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

body.twostars-elementor-ready .elementor-widget-text-editor,
body.twostars-elementor-ready .elementor-widget-text-editor p,
body.twostars-elementor-ready .elementor-icon-box-description,
body.twostars-elementor-ready .elementor-image-box-description {
  color: rgba(13, 27, 42, 0.8);
  font-family: var(--twostars-font-body);
  line-height: 1.8;
}

body.twostars-elementor-ready .elementor-button {
  border-radius: 8px;
  background: linear-gradient(90deg, var(--twostars-color-dune), #ff8c61);
  color: var(--twostars-color-white);
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.2);
  font-family: var(--twostars-font-ui);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.twostars-elementor-ready .elementor-button:hover,
body.twostars-elementor-ready .elementor-button:focus-visible {
  transform: translateY(-2px);
}

body.twostars-elementor-ready .elementor-widget-icon-box,
body.twostars-elementor-ready .elementor-widget-image-box,
body.twostars-elementor-ready .elementor-accordion .elementor-tab-content,
body.twostars-elementor-ready .elementor-accordion .elementor-tab-title,
body.twostars-elementor-ready .elementor-tabs-wrapper,
body.twostars-elementor-ready .elementor-tab-content {
  border-color: rgba(27, 58, 107, 0.08);
}

@media (max-width: 900px) {
  .site-shell--footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav-panel {
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(27, 58, 107, 0.08);
  }

  .site-header.is-nav-open .site-nav-panel {
    display: grid;
    gap: 1rem;
  }

  .site-menu {
    gap: 0.9rem;
  }

  .site-header__button,
  .site-footer__button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1.5rem, var(--twostars-content-width));
  }

  .site-shell--footer,
  .site-footer__subfooter-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .twostars-editorial-archive__hero,
  .twostars-article__hero,
  .twostars-article__body {
    padding: 1.5rem;
  }
}

.twostars-destination-archive {
  padding-bottom: 0;
}

.twostars-destination-archive__hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--twostars-color-cloud);
  background: #070b10;
}

.twostars-destination-archive__hero-media,
.twostars-destination-archive__hero-overlay {
  position: absolute;
  inset: 0;
}

.twostars-destination-archive__hero-media {
  background-image:
    linear-gradient(120deg, rgba(212, 163, 115, 0.28), rgba(11, 21, 32, 0.18)),
    var(--twostars-destination-hero-image, linear-gradient(135deg, #10304b 0%, #285274 46%, #d19a63 100%));
  background-position: center center;
  background-size: cover;
  transform: scale(1.03);
}

.twostars-destination-archive__hero-overlay {
  background:
    linear-gradient(to top, rgba(7, 11, 16, 0.92) 0%, rgba(7, 11, 16, 0.58) 36%, rgba(7, 11, 16, 0.14) 76%, rgba(7, 11, 16, 0.06) 100%),
    linear-gradient(to right, rgba(7, 11, 16, 0.72) 0%, rgba(7, 11, 16, 0.12) 56%, rgba(7, 11, 16, 0.48) 100%);
}

.twostars-destination-archive__hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.twostars-destination-archive__hero-copy {
  max-width: 48rem;
}

.twostars-destination-archive__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.twostars-destination-archive__eyebrow-line {
  width: 42px;
  height: 1px;
  background: rgba(212, 163, 115, 0.86);
}

.twostars-destination-archive__eyebrow,
.twostars-destination-archive__section-label {
  margin: 0;
  color: rgba(212, 163, 115, 0.92);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.twostars-destination-archive__title {
  margin: 0;
  max-width: 12ch;
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.twostars-destination-archive__intro {
  max-width: 41rem;
  margin: 1.4rem 0 0;
  color: rgba(245, 237, 224, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.85;
}

.twostars-destination-archive__hero-actions,
.twostars-destination-archive__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.twostars-destination-archive__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--twostars-font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.twostars-destination-archive__button--primary {
  color: var(--twostars-color-white);
  background: linear-gradient(90deg, var(--twostars-color-dune) 0%, #ff8c61 100%);
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.24);
}

.twostars-destination-archive__button--secondary {
  color: var(--twostars-color-cloud);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 237, 224, 0.18);
}

.twostars-destination-archive__button:hover,
.twostars-destination-archive__button:focus-visible {
  transform: translateY(-2px);
}

.twostars-destination-archive__button--secondary:hover,
.twostars-destination-archive__button--secondary:focus-visible {
  color: var(--twostars-color-white);
  border-color: rgba(245, 237, 224, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.twostars-destination-archive__hero-sidebar {
  justify-self: end;
  width: 100%;
  max-width: 28rem;
  padding: 1.7rem;
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 17, 28, 0.82), rgba(9, 17, 28, 0.6));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.twostars-destination-archive__sidebar-text {
  margin: 0;
  color: rgba(245, 237, 224, 0.8);
  font-size: 1rem;
  line-height: 1.85;
}

.twostars-destination-archive__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.twostars-destination-archive__stat {
  display: grid;
  gap: 0.3rem;
}

.twostars-destination-archive__stat strong {
  color: rgba(232, 196, 154, 0.98);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.twostars-destination-archive__stat span {
  color: rgba(245, 237, 224, 0.54);
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.6;
}

.twostars-destination-archive__story,
.twostars-destination-archive__collection {
  padding: 5rem 0;
}

.twostars-destination-archive__story {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f4eadc 100%);
}

.twostars-destination-archive__section-head,
.twostars-destination-archive__story-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.twostars-destination-archive__section-title,
.twostars-destination-archive__cta-title {
  margin: 0.5rem 0 0;
  max-width: 15ch;
  font-family: var(--twostars-font-heading);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.twostars-destination-archive__section-text,
.twostars-destination-archive__cta-text {
  margin: 0;
  color: rgba(13, 27, 42, 0.76);
  font-size: 1.02rem;
  line-height: 1.9;
}

.twostars-destination-archive__story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.twostars-destination-archive__story-card,
.twostars-destination-archive__card {
  overflow: hidden;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(13, 27, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.twostars-destination-archive__story-card:hover,
.twostars-destination-archive__story-card:focus-within,
.twostars-destination-archive__card:hover,
.twostars-destination-archive__card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.18);
  box-shadow: 0 24px 54px rgba(13, 27, 42, 0.12);
}

.twostars-destination-archive__story-media,
.twostars-destination-archive__card-media {
  position: relative;
  overflow: hidden;
}

.twostars-destination-archive__story-media {
  aspect-ratio: 4 / 4.2;
}

.twostars-destination-archive__card-media {
  aspect-ratio: 4 / 3;
}

.twostars-destination-archive__story-media img,
.twostars-destination-archive__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.twostars-destination-archive__story-card:hover img,
.twostars-destination-archive__story-card:focus-within img,
.twostars-destination-archive__card:hover img,
.twostars-destination-archive__card:focus-within img {
  transform: scale(1.05);
}

.twostars-destination-archive__story-placeholder,
.twostars-destination-archive__card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #20446a 0%, #2d6a87 40%, #d4a373 100%);
}

.twostars-destination-archive__card-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.58), transparent);
  pointer-events: none;
}

.twostars-destination-archive__story-body,
.twostars-destination-archive__card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
}

.twostars-destination-archive__story-kicker,
.twostars-destination-archive__card-kicker {
  margin: 0;
  color: rgba(255, 107, 53, 0.9);
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.twostars-destination-archive__story-title,
.twostars-destination-archive__card-title {
  margin: 0;
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.twostars-destination-archive__story-title a,
.twostars-destination-archive__card-title a {
  text-decoration: none;
}

.twostars-destination-archive__story-excerpt,
.twostars-destination-archive__card-excerpt {
  margin: 0;
  color: rgba(13, 27, 42, 0.76);
  line-height: 1.85;
}

.twostars-destination-archive__story-links,
.twostars-destination-archive__card-related {
  display: grid;
  gap: 0.75rem;
}

.twostars-destination-archive__story-links > span,
.twostars-destination-archive__card-related > span {
  color: rgba(13, 27, 42, 0.52);
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.twostars-destination-archive__story-links a,
.twostars-destination-archive__card-related-links a {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 58, 107, 0.06);
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.twostars-destination-archive__story-links {
  align-content: start;
}

.twostars-destination-archive__story-links a + a {
  margin-top: 0.35rem;
}

.twostars-destination-archive__card-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.twostars-destination-archive__card-actions {
  margin-top: 0.25rem;
}

.twostars-destination-archive__card-link,
.twostars-destination-archive__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.twostars-destination-archive__card-link:hover,
.twostars-destination-archive__card-link:focus-visible,
.twostars-destination-archive__text-link:hover,
.twostars-destination-archive__text-link:focus-visible {
  color: var(--twostars-color-dune);
}

.twostars-destination-archive__collection {
  background:
    radial-gradient(circle at top left, rgba(0, 180, 216, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8f0e4 100%);
}

.twostars-destination-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.twostars-destination-archive__empty {
  padding: 2rem;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.twostars-destination-archive__cta {
  padding: 0 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f0e4 0%, #10233f 100%);
}

.twostars-destination-archive__cta-shell {
  width: min(100% - 2.5rem, 1320px);
}

.twostars-destination-archive__cta-content {
  width: 100%;
  max-width: none;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.16), transparent 24%),
    linear-gradient(135deg, #142745 0%, #0d1b2a 100%);
  box-shadow: 0 28px 60px rgba(13, 27, 42, 0.22);
}

.twostars-destination-archive__cta .twostars-destination-archive__section-label,
.twostars-destination-archive__cta-title,
.twostars-destination-archive__cta-text,
.twostars-destination-archive__cta .twostars-destination-archive__text-link {
  color: var(--twostars-color-cloud);
}

.twostars-destination-archive__cta .twostars-destination-archive__text-link {
  border-bottom: 1px solid rgba(245, 237, 224, 0.22);
  padding-bottom: 0.25rem;
}

@media (max-width: 1080px) {
  .twostars-destination-archive__hero-shell,
  .twostars-destination-archive__section-head,
  .twostars-destination-archive__story-header {
    grid-template-columns: 1fr;
  }

  .twostars-destination-archive__hero-sidebar {
    justify-self: start;
    max-width: 100%;
  }

  .twostars-destination-archive__story-grid,
  .twostars-destination-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .twostars-destination-archive__hero {
    min-height: auto;
  }

  .twostars-destination-archive__hero-shell {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .twostars-destination-archive__stats {
    grid-template-columns: 1fr;
  }

  .twostars-destination-archive__story,
  .twostars-destination-archive__collection {
    padding: 4rem 0;
  }

  .twostars-destination-archive__story-grid,
  .twostars-destination-archive__grid {
    grid-template-columns: 1fr;
  }

  .twostars-destination-archive__cta {
    padding-bottom: 4rem;
  }

  .twostars-destination-archive__button {
    width: 100%;
  }
}

.twostars-destination-entry {
  padding: 0 0 5rem;
}

.twostars-destination-entry__layout {
  display: grid;
  gap: 2.5rem;
}

.twostars-destination-entry__masthead {
  position: relative;
  min-height: min(88svh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--twostars-color-cloud);
  background: #070b10;
  padding-inline: 2%;
}

.twostars-destination-entry__masthead-media,
.twostars-destination-entry__masthead-overlay {
  position: absolute;
  inset: 0;
}

.twostars-destination-entry__masthead-media {
  background-image:
    linear-gradient(120deg, rgba(212, 163, 115, 0.18), rgba(11, 21, 32, 0.08)),
    var(--twostars-destination-entry-image, linear-gradient(135deg, #10304b 0%, #285274 46%, #d19a63 100%));
  background-position: center center;
  background-size: cover;
  transform: scale(1.04);
}

.twostars-destination-entry__masthead-overlay {
  background:
    linear-gradient(to top, rgba(7, 11, 16, 0.92) 0%, rgba(7, 11, 16, 0.58) 40%, rgba(7, 11, 16, 0.12) 78%, rgba(7, 11, 16, 0.06) 100%),
    linear-gradient(to right, rgba(7, 11, 16, 0.72) 0%, rgba(7, 11, 16, 0.18) 55%, rgba(7, 11, 16, 0.48) 100%);
}

.twostars-destination-entry__masthead-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.78fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.twostars-destination-entry__masthead-copy {
  max-width: 50rem;
}

.twostars-destination-entry__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.twostars-destination-entry__eyebrow-line {
  width: 42px;
  height: 1px;
  background: rgba(212, 163, 115, 0.86);
}

.twostars-destination-entry__eyebrow,
.twostars-destination-entry__panel-label {
  margin: 0;
  color: rgba(212, 163, 115, 0.92);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.twostars-destination-entry__masthead-title {
  margin: 0;
  max-width: 12ch;
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.twostars-destination-entry__masthead-excerpt {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(245, 237, 224, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
}

.twostars-destination-entry__masthead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.35rem;
}

.twostars-destination-entry__masthead-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 237, 224, 0.88);
  font-family: var(--twostars-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
}

.twostars-destination-entry__masthead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.twostars-destination-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--twostars-font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.twostars-destination-entry__button--primary {
  color: var(--twostars-color-white);
  background: linear-gradient(90deg, var(--twostars-color-dune) 0%, #ff8c61 100%);
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.24);
}

.twostars-destination-entry__button--secondary {
  color: var(--twostars-color-cloud);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 237, 224, 0.18);
}

.twostars-destination-entry__button:hover,
.twostars-destination-entry__button:focus-visible {
  transform: translateY(-2px);
}

.twostars-destination-entry__button--secondary:hover,
.twostars-destination-entry__button--secondary:focus-visible {
  color: var(--twostars-color-white);
  border-color: rgba(245, 237, 224, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.twostars-destination-entry__masthead-panel {
  justify-self: end;
  width: 100%;
  max-width: 28rem;
  padding: 1.7rem;
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 17, 28, 0.82), rgba(9, 17, 28, 0.6));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.twostars-destination-entry__panel-copy {
  margin: 1rem 0 0;
  color: rgba(245, 237, 224, 0.8);
  line-height: 1.85;
}

.twostars-destination-entry__panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.twostars-destination-entry__panel-stat {
  display: grid;
  gap: 0.3rem;
}

.twostars-destination-entry__panel-stat strong {
  color: rgba(232, 196, 154, 0.98);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.twostars-destination-entry__panel-stat span {
  color: rgba(245, 237, 224, 0.56);
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.twostars-destination-entry__content {
  align-items: start;
}

.twostars-destination-entry__body {
  display: grid;
  gap: 1.5rem;
}

.twostars-destination-entry__body-label,
.twostars-destination-entry__section-label {
  margin: 0;
  color: var(--twostars-color-dune);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.twostars-destination-entry__body-title,
.twostars-destination-entry__section-title {
  margin: 0.55rem 0 0;
  font-family: var(--twostars-font-heading);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.twostars-destination-entry__body-content {
  color: rgba(13, 27, 42, 0.82);
  line-height: 1.9;
}

.twostars-destination-entry__body-content > :first-child {
  margin-top: 0;
}

.twostars-destination-entry__body-content > :last-child {
  margin-bottom: 0;
}

.twostars-destination-entry__sidebar {
  gap: 1rem;
}

.twostars-destination-entry__sidebar-card {
  display: grid;
  gap: 1rem;
}

.twostars-destination-entry__sidebar-card--cta {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(27, 58, 107, 0.06), rgba(255, 255, 255, 0.92));
}

.twostars-destination-entry__bullet-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.1rem;
  margin: 0;
  color: rgba(13, 27, 42, 0.78);
}

.twostars-destination-entry__sidebar-links {
  display: grid;
  gap: 0.65rem;
}

.twostars-destination-entry__sidebar-link {
  display: inline-flex;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(27, 58, 107, 0.06);
  color: var(--twostars-color-earth);
  font-family: var(--twostars-font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.twostars-destination-entry__related,
.twostars-destination-entry__nearby,
.twostars-destination-entry__gallery,
.twostars-destination-entry__details {
  display: grid;
  gap: 1.5rem;
}

.twostars-destination-entry__section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 1.5rem 2rem;
  align-items: end;
}

.twostars-destination-entry__section-text {
  margin: 0;
  color: rgba(13, 27, 42, 0.72);
  line-height: 1.85;
}

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

.twostars-destination-entry__gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.twostars-destination-entry__gallery-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.twostars-destination-entry__gallery-item {
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(16, 33, 51, 0.12);
}

.twostars-destination-entry__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.twostars-destination-entry__gallery-item:hover img {
  transform: scale(1.05);
}

.twostars-destination-entry__gallery-item--1 {
  grid-row: span 2;
  min-height: 460px;
}

.twostars-destination-entry__gallery-grid--single .twostars-destination-entry__gallery-item--1 {
  grid-row: auto;
}

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

.twostars-destination-entry__detail-card {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 51, 0.08);
  box-shadow: 0 18px 36px rgba(16, 33, 51, 0.08);
}

.twostars-destination-entry__detail-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c06f43;
}

.twostars-destination-entry__detail-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.08;
  color: #102133;
}

.twostars-destination-entry__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #20446a 0%, #2d6a87 40%, #d4a373 100%);
}

@media (max-width: 960px) {
  .twostars-destination-entry__masthead-shell,
  .twostars-destination-entry__section-head,
  .twostars-destination-entry__related-grid,
  .twostars-destination-entry__nearby-grid,
  .twostars-destination-entry__gallery-grid,
  .twostars-destination-entry__detail-grid {
    grid-template-columns: 1fr;
  }

  .twostars-destination-entry__masthead-panel {
    justify-self: start;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .twostars-destination-entry {
    padding: 0 0 4rem;
  }

  .twostars-destination-entry__masthead {
    min-height: auto;
  }

  .twostars-destination-entry__masthead-shell {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .twostars-destination-entry__panel-stats {
    grid-template-columns: 1fr;
  }

  .twostars-destination-entry__masthead-actions .twostars-destination-entry__button {
    width: 100%;
  }

  .twostars-destination-entry__button {
    width: 100%;
  }
}

.twostars-tour-entry {
  padding: 0 0 5rem;
}

.twostars-tour-entry__layout {
  display: grid;
  gap: 2.5rem;
  
}

.twostars-tour-entry__masthead {
  position: relative;
  min-height: min(88svh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--twostars-color-cloud);
  background: #070b10;
  padding-inline: 2%;
}

.twostars-tour-entry__masthead-media,
.twostars-tour-entry__masthead-overlay {
  position: absolute;
  inset: 0;
}

.twostars-tour-entry__masthead-media {
  background-image:
    linear-gradient(120deg, rgba(212, 163, 115, 0.18), rgba(11, 21, 32, 0.08)),
    var(--twostars-tour-entry-image, linear-gradient(135deg, #10304b 0%, #285274 46%, #d19a63 100%));
  background-position: center center;
  background-size: cover;
  transform: scale(1.04);
}

.twostars-tour-entry__masthead-overlay {
  background:
    linear-gradient(to top, rgba(7, 11, 16, 0.92) 0%, rgba(7, 11, 16, 0.58) 40%, rgba(7, 11, 16, 0.12) 78%, rgba(7, 11, 16, 0.06) 100%),
    linear-gradient(to right, rgba(7, 11, 16, 0.72) 0%, rgba(7, 11, 16, 0.18) 55%, rgba(7, 11, 16, 0.48) 100%);
}

.twostars-tour-entry__masthead-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.twostars-tour-entry__masthead-copy {
  max-width: 50rem;
}

.twostars-tour-entry__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.twostars-tour-entry__eyebrow-line {
  width: 42px;
  height: 1px;
  background: rgba(212, 163, 115, 0.86);
}

.twostars-tour-entry__eyebrow,
.twostars-tour-entry__panel-label {
  margin: 0;
  color: rgba(212, 163, 115, 0.92);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.twostars-tour-entry__masthead-title {
  margin: 0;
  max-width: 12ch;
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.twostars-tour-entry__masthead-excerpt {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: rgba(245, 237, 224, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
}

.twostars-tour-entry__masthead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.35rem;
}

.twostars-tour-entry__masthead-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 237, 224, 0.88);
  font-family: var(--twostars-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
}

.twostars-tour-entry__masthead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.twostars-tour-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--twostars-font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.twostars-tour-entry__button--primary {
  color: var(--twostars-color-white);
  background: linear-gradient(90deg, var(--twostars-color-dune) 0%, #ff8c61 100%);
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.24);
}

.twostars-tour-entry__button--secondary {
  color: var(--twostars-color-cloud);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 237, 224, 0.18);
}

.twostars-tour-entry__button:hover,
.twostars-tour-entry__button:focus-visible {
  transform: translateY(-2px);
}

.twostars-tour-entry__button--secondary:hover,
.twostars-tour-entry__button--secondary:focus-visible {
  color: var(--twostars-color-white);
  border-color: rgba(245, 237, 224, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.twostars-tour-entry__masthead-panel {
  justify-self: end;
  width: 100%;
  max-width: 28rem;
  padding: 1.7rem;
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 17, 28, 0.82), rgba(9, 17, 28, 0.6));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.twostars-tour-entry__panel-copy {
  margin: 1rem 0 0;
  color: rgba(245, 237, 224, 0.8);
  line-height: 1.85;
}

.twostars-tour-entry__panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.twostars-tour-entry__panel-stat {
  display: grid;
  gap: 0.3rem;
}

.twostars-tour-entry__panel-stat strong {
  color: rgba(232, 196, 154, 0.98);
  font-family: var(--twostars-font-heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.twostars-tour-entry__panel-stat span {
  color: rgba(245, 237, 224, 0.56);
  font-family: var(--twostars-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.twostars-tour-entry__panel-note {
  margin: 1.2rem 0 0;
  color: rgba(245, 237, 224, 0.72);
  line-height: 1.75;
}

.twostars-tour-entry__content {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  align-items: start;
}

.twostars-tour-entry__main,
.twostars-tour-entry__sidebar,
.twostars-tour-entry__destinations,
.twostars-tour-entry__nearby {
  display: grid;
  gap: 1.5rem;
}

.twostars-tour-entry__body {
  display: grid;
  gap: 1.5rem;
}

.twostars-tour-entry__body-label,
.twostars-tour-entry__section-label {
  margin: 0;
  color: var(--twostars-color-dune);
  font-family: var(--twostars-font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.twostars-tour-entry__body-title,
.twostars-tour-entry__section-title {
  margin: 0.55rem 0 0;
  font-family: var(--twostars-font-heading);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.twostars-tour-entry__body-content {
  color: rgba(13, 27, 42, 0.82);
  line-height: 1.9;
}

.twostars-tour-entry__body-content > :first-child {
  margin-top: 0;
}

.twostars-tour-entry__body-content > :last-child {
  margin-bottom: 0;
}

.twostars-tour-entry__section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 1.5rem 2rem;
  align-items: end;
}

.twostars-tour-entry__section-text {
  margin: 0;
  color: rgba(13, 27, 42, 0.72);
  line-height: 1.85;
}

.twostars-tour-entry__sidebar-card {
  display: grid;
  gap: 1rem;
}

.twostars-tour-entry__sidebar-card--cta {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(27, 58, 107, 0.06), rgba(255, 255, 255, 0.92));
}

.twostars-tour-entry__summary-list,
.twostars-tour-entry__bullet-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.twostars-tour-entry__summary-list {
  padding: 0;
  list-style: none;
}

.twostars-tour-entry__summary-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(111, 75, 45, 0.12);
}

.twostars-tour-entry__summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.twostars-tour-entry__summary-list span {
  color: rgba(13, 27, 42, 0.72);
}

.twostars-tour-entry__summary-list strong {
  color: var(--twostars-color-night);
}

.twostars-tour-entry__bullet-list {
  padding-left: 1.1rem;
  color: rgba(13, 27, 42, 0.78);
}

.twostars-tour-entry__destination-grid,
.twostars-tour-entry__nearby-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.twostars-tour-entry__gallery,
.twostars-tour-entry__details {
  display: grid;
  gap: 1.5rem;
}

.twostars-tour-entry__gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.twostars-tour-entry__gallery-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.twostars-tour-entry__gallery-item {
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(16, 33, 51, 0.12);
}

.twostars-tour-entry__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.twostars-tour-entry__gallery-item:hover img {
  transform: scale(1.05);
}

.twostars-tour-entry__gallery-item--1 {
  grid-row: span 2;
  min-height: 460px;
}

.twostars-tour-entry__gallery-grid--single .twostars-tour-entry__gallery-item--1 {
  grid-row: auto;
}

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

.twostars-tour-entry__detail-card {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 51, 0.08);
  box-shadow: 0 18px 36px rgba(16, 33, 51, 0.08);
}

.twostars-tour-entry__detail-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c06f43;
}

.twostars-tour-entry__detail-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.08;
  color: #102133;
}

.twostars-tour-entry__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #20446a 0%, #2d6a87 40%, #d4a373 100%);
}

.twostars-gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.twostars-gallery-tile img {
  display: block;
}

.twostars-gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 16, 0.56), rgba(7, 11, 16, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.twostars-gallery-tile:hover::after,
.twostars-gallery-tile:focus-visible::after {
  opacity: 1;
}

.twostars-gallery-tile__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 11, 16, 0.74);
  color: var(--twostars-color-cloud);
  font-family: var(--twostars-font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.twostars-gallery-tile:hover .twostars-gallery-tile__hint,
.twostars-gallery-tile:focus-visible .twostars-gallery-tile__hint {
  opacity: 1;
  transform: translateY(0);
}

.twostars-lightbox-open {
  overflow: hidden;
}

.twostars-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.twostars-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.twostars-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 16, 0.94);
}

.twostars-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.twostars-lightbox__figure {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.twostars-lightbox__image {
  display: block;
  width: 100%;
  max-height: min(78vh, 900px);
  border-radius: 24px;
  object-fit: contain;
  background: #0a121b;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.twostars-lightbox__caption {
  color: rgba(245, 237, 224, 0.82);
  font-family: var(--twostars-font-ui);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
  display: none;
}

.twostars-lightbox__close,
.twostars-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: 999px;
  background: rgba(12, 21, 32, 0.88);
  color: var(--twostars-color-cloud);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.twostars-lightbox__close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  font-size: 1.6rem;
}

.twostars-lightbox__close:hover,
.twostars-lightbox__close:focus-visible,
.twostars-lightbox__nav:hover,
.twostars-lightbox__nav:focus-visible {
  transform: translateY(-1px);
  background: rgba(22, 35, 51, 0.96);
  border-color: rgba(245, 237, 224, 0.28);
}

.twostars-lightbox.is-single .twostars-lightbox__nav {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .twostars-gallery-tile::after,
  .twostars-gallery-tile__hint,
  .twostars-lightbox,
  .twostars-lightbox__close,
  .twostars-lightbox__nav {
    transition: none;
  }
}

@media (max-width: 960px) {
  .twostars-tour-entry__masthead-shell,
  .twostars-tour-entry__content,
  .twostars-tour-entry__section-head,
  .twostars-tour-entry__destination-grid,
  .twostars-tour-entry__nearby-grid,
  .twostars-tour-entry__gallery-grid,
  .twostars-tour-entry__detail-grid {
    grid-template-columns: 1fr;
  }

  .twostars-tour-entry__masthead-panel {
    justify-self: start;
    max-width: 100%;
  }

  .twostars-lightbox {
    padding: 1rem;
  }

  .twostars-lightbox__dialog {
    grid-template-columns: minmax(0, 1fr);
  }

  .twostars-lightbox__nav {
    position: absolute;
    bottom: 4.5rem;
    z-index: 2;
  }

  .twostars-lightbox__nav--prev {
    left: 0.5rem;
  }

  .twostars-lightbox__nav--next {
    right: 0.5rem;
  }

  .twostars-lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .twostars-lightbox__image {
    max-height: 72vh;
  }
}

@media (max-width: 720px) {
  .twostars-tour-entry {
    padding: 0 0 4rem;
  }

  .twostars-tour-entry__masthead {
    min-height: auto;
  }

  .twostars-tour-entry__masthead-shell {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .twostars-tour-entry__panel-stats {
    grid-template-columns: 1fr;
  }

  .twostars-tour-entry__masthead-actions .twostars-tour-entry__button,
  .twostars-tour-entry__button {
    width: 100%;
  }
}
