@charset "UTF-8";
/*
 * ScoutSki Theme — Main Stylesheet
 * Fonts: BrandonGrotesque (sans) + LeMondeJournal (serif) via Typekit / Adobe Fonts
 * Fallbacks use Montserrat (Google Fonts) + Georgia
 * ============================================================
 */
/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "BrandonGrotesque", "Montserrat", Arial, sans-serif;
  font-size: 15px;
  color: #333;
  background: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "LeMondeJournal", "BrandonGrotesque", "Montserrat", Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
}

a {
  color: #79bde8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout helpers ────────────────────────────────────────── */
.holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#primary.site-main {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
  color: #999;
  margin-bottom: 24px;
  position: relative;
}

.title::before,
.title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #ddd;
}

.title::before {
  left: 0;
}

.title::after {
  right: 0;
}

.title strong, .title a {
  color: #555;
  font-size: 11px;
  letter-spacing: 0.2em;
}

/* ── Sections: shared ──────────────────────────────────────── */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header Mobile ─────────────────────────────────────────── */
#header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo-mobile {
  display: flex;
  align-items: center;
}

.logo-mobile img {
  height: 40px;
  width: auto;
  max-width: none;
}

.nav-mobile-opener {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-mobile-opener span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}

/* ── Header Desktop ────────────────────────────────────────── */
#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  transition: background 0.3s;
}

#header.header--solid {
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: transparent;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#header.scrolledup {
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: transparent;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.admin-bar #header {
  top: 32px;
}

body.admin-bar #header-mobile {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #header {
    top: 46px;
  }
  body.admin-bar #header-mobile {
    margin-top: 46px;
  }
}
.header-top .holder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 0;
  position: relative;
}

.text-scoutmagazine {
  position: absolute;
  left: 20px;
  display: inline-flex;
  align-items: center;
}

.text-scoutmagazine .header-brand-image {
  height: 60px;
  width: auto;
  max-width: none;
}

.text-scoutmagazine .header-brand-image--dark {
  display: none;
}

#header.header--solid .text-scoutmagazine .header-brand-image--light,
#header.scrolledup .text-scoutmagazine .header-brand-image--light {
  display: none;
}

#header.header--solid .text-scoutmagazine .header-brand-image--dark,
#header.scrolledup .text-scoutmagazine .header-brand-image--dark {
  display: block;
}

strong.logo a {
  font-family: "LeMondeJournal", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

strong.logo .site-title-image {
  height: 36px;
  width: auto;
  max-width: none;
}

strong.logo .site-title-image--dark {
  display: none;
}

#header.header--solid strong.logo .site-title-image--light,
#header.scrolledup strong.logo .site-title-image--light {
  display: none;
}

#header.header--solid strong.logo .site-title-image--dark,
#header.scrolledup strong.logo .site-title-image--dark {
  display: block;
}

#header.header--solid strong.logo a,
#header.scrolledup strong.logo a {
  color: #333;
}

.quicksearch-form {
  position: absolute;
  right: 20px;
  width: 17px;
  transition: width 0.3s ease;
}

.quicksearch-form.is-open {
  width: 281px;
}

.quicksearch-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 26px;
}

.quicksearch-form input[type=text] {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  padding-right: 24px;
  width: 44px;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: width 0.3s ease, opacity 0.3s ease;
  outline: none;
}

.quicksearch-form input[type=text].open,
.quicksearch-form input[type=text]:focus {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  width: 259px;
  opacity: 1;
  cursor: text;
}

.quicksearch-form input[type=submit] {
  background: url("/wp-content/themes/scoutski/assets/images/icon-search.svg") no-repeat center;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 3px;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}

.quicksearch-form.is-open input[type=submit] {
  filter: brightness(0);
}

#header.scrolledup .quicksearch-form input[type=text] {
  border-bottom-color: rgba(0, 0, 0, 0.5);
  color: #333;
}

#header.header--solid .quicksearch-form input[type=text] {
  border-bottom-color: rgba(0, 0, 0, 0.5);
  color: #333;
}

/* ── Nav ───────────────────────────────────────────────────── */
.header-bottom .holder {
  display: flex;
  justify-content: center;
  padding: 12px 20px;
}

.main-nav-drop {
  display: flex;
  gap: 0;
  align-items: center;
}

#nav, .member-area {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

#nav li a, .member-area li a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

#nav li a:hover, .member-area li a:hover {
  color: #fff;
  text-decoration: none;
}

#header.header--solid #nav li a,
#header.header--solid .member-area li a,
#header.scrolledup #nav li a,
#header.scrolledup .member-area li a {
  color: #555;
}

#header.header--solid #nav li a:hover,
#header.header--solid .member-area li a:hover,
#header.scrolledup #nav li a:hover,
#header.scrolledup .member-area li a:hover {
  color: #000;
}

.member-area {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 16px;
  padding-left: 16px;
}

#header.header--solid .member-area,
#header.scrolledup .member-area {
  border-left-color: #ddd;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero__tagline {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.hero__downarrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.arrow-down {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}
.hero__caption {
  position: absolute;
  bottom: 12px;
  right: 20px;
  z-index: 2;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

body:not(.home) #primary.site-main {
  padding-top: 190px;
  padding-bottom: 48px;
}

body:not(.home) .entry-header {
  margin-bottom: 32px;
  text-align: center;
}

body:not(.home) .entry-title {
  font-size: 48px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body:not(.home) .entry-content {
  font-size: 16px;
  line-height: 1.8;
}

body:not(.home) .entry-content p,
body:not(.home) .entry-content ul {
  margin-bottom: 1.5em;
}

/* ── Benefits / What Is Scout ──────────────────────────────── */
.benefits {
  text-align: center;
}

.benefits .mission {
  font-size: 15px;
  color: #666;
  margin: 0 auto 36px;
  max-width: 600px;
}

.benefits__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefits__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border: 1px solid #eee;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s;
}

.benefits__col:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.benefits__col img {
  margin-bottom: 16px;
}

.benefits__col h2 {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.benefits__col p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── Destinations ──────────────────────────────────────────── */
.destination {
  text-align: center;
  padding-top: 24px;
}

.destination__carousel {
  display: flex;
  justify-content: center;
  gap: 96px;
  flex-wrap: wrap;
}

.destination__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.destination__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  width: 140px;
  height: 80px;
}

.destination__badge:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.destination__slide strong {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.destination__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Featured Deals ────────────────────────────────────────── */
.featured-deals {
  padding-top: 0;
}

.deals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deals__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.deals__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.deals__card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.deals__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.deals__card-placeholder {
  width: 100%;
  height: 200px;
  background: #e8e8e8;
}

.deals__card .deals__tag {
  display: block;
  padding: 8px 12px 0;
  font-size: 11px;
  color: #e74c3c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deals__card h3 {
  padding: 6px 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deals__card .deals__location {
  display: block;
  padding: 0 12px 4px;
  font-size: 11px;
  color: #79bde8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deals__card p {
  padding: 0 12px 16px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ── Scout Picks single (single-our_picks_intro.php) ─────── */
.pick-single {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.pick-single__hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  margin-top: 80px;
}

.pick-single__hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.pick-single__inner {
  padding: 0 20px;
}

.pick-single__header {
  padding: 40px 0 24px;
  border-bottom: 1px solid #eee;
  margin-bottom: 28px;
}

.pick-single__eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #79bde8;
  font-weight: 700;
  margin: 0 0 10px;
}

.pick-single__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.2;
}

.pick-single__intro {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 48px;
}
.pick-single__intro p {
  margin-bottom: 1.2em;
}

/* ── Pick entries (related our_picks_page posts) ─────────── */
.pick-entries {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pick-entry {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #eee;
  align-items: start;
}

.pick-entry:last-child {
  border-bottom: 1px solid #eee;
}

.pick-entry__img-wrap {
  overflow: hidden;
  background: #eee;
}

.pick-entry__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.pick-entry__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #222;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pick-entry__num {
  color: #79bde8;
  font-size: 22px;
  flex-shrink: 0;
}

.pick-entry__content {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}
.pick-entry__content p {
  margin-bottom: 1em;
}
.pick-entry__content a {
  color: #79bde8;
  text-decoration: none;
}
.pick-entry__content a:hover {
  text-decoration: underline;
}

.pick-single__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.pick-single__back a {
  font-size: 13px;
  color: #79bde8;
  text-decoration: none;
}
.pick-single__back a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .pick-single__hero {
    margin-top: 60px;
  }
  .pick-single__hero-img {
    height: 260px;
  }
  .pick-entry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ── Scout Picks archive (archive-our_picks_intro.php) ────── */
.picks-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 20px 80px;
}

.picks-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.picks-page__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.picks-page__empty {
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 60px 0;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.picks-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.picks-card:hover {
  text-decoration: none;
}

.picks-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}

.picks-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.picks-card:hover .picks-card__img {
  transform: scale(1.04);
}

.picks-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: #ccc;
}

.picks-card__body {
  padding: 16px 0 0;
}

.picks-card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #222;
  line-height: 1.3;
}

.picks-card:hover .picks-card__title {
  color: #79bde8;
}

.picks-card__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .picks-page {
    padding-top: 100px;
  }
  .picks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ── Deals page (archive-property.php) ────────────────────── */
.deals-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 180px 20px 60px;
}

.deals-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.deals-page__header-text {
  flex: 1;
}

.deals-page__title {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

.deals-page__intro {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-width: 580px;
}

.deals-page__intro p {
  margin: 0;
}

.deals-page__search-btn {
  display: inline-block;
  flex-shrink: 0;
  padding: 10px 18px;
  background: #79bde8;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.deals-page__search-btn:hover {
  background: #6aaedd;
  text-decoration: none;
  color: #000;
}

/* Filter badges */
.deals-page__filters {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.deals-page__filter-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #333;
  flex: 1;
}

.deals-page__filter-badge__oval {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid #333;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  font-size: 26px;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.02em;
}

.deals-page__filter-badge__label {
  font-size: 13px;
  color: #333;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.deals-page__filter-badge:hover .deals-page__filter-badge__oval {
  background: #f5f5f5;
}

.deals-page__filter-badge.is-active .deals-page__filter-badge__oval {
  background: #333;
  color: #fff;
}

.deals-page__empty {
  text-align: center;
  color: #666;
  padding: 40px 0;
  font-size: 14px;
}

/* Deal card grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  margin-bottom: 40px;
}

.deal-item {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deal-item > a {
  display: block;
}

.deal-item > a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.deal-item__placeholder {
  width: 100%;
  height: 200px;
  background: #ddd;
}

.deal-item .container {
  padding: 16px 20px 20px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-item h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 4px;
  font-family: "Montserrat", Arial, sans-serif;
}

.deal-item address {
  font-style: normal;
  font-size: 14px;
  color: #555;
  margin: 0 0 6px;
}

.deal-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #d64235;
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.deal-item .limited-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
}

.deal-item .cta_primary {
  display: inline-block;
  padding: 8px 14px;
  background: #79bde8;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-top: auto;
  align-self: flex-start;
}

.deal-item .cta_primary:hover {
  background: #6aaedd;
  text-decoration: none;
  color: #000;
}

@media (max-width: 768px) {
  .deals-page {
    padding-top: 100px;
  }
  .deals-page__header {
    flex-direction: column;
  }
  .deals-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Field Guide + Featured Resort ────────────────────────── */
.field-guide-section .features {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.field-guide-section .col.fieldguides {
  width: 300px;
  min-width: 300px;
  text-align: center;
  padding: 0 0 20px;
  line-height: 20px;
  background-color: #fff;
  margin-right: 20px;
  box-sizing: border-box;
}

.field-guide-section .col.fieldguides img {
  display: block;
  width: 100%;
  height: auto;
}

.field-guide-section .col.fieldguides .container {
  color: #181818;
  font: 14px/20px Arial, Helvetica, sans-serif;
  padding: 20px 30px 10px 19px;
  text-align: left;
  min-height: 175px;
  box-sizing: border-box;
}

.field-guide-section .col.fieldguides h2 {
  font: normal 18px/20px "Montserrat", Arial, Helvetica, sans-serif;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.field-guide-section .col.fieldguides h2 a {
  color: #000;
  text-decoration: none;
}

.field-guide-section .col.fieldguides p {
  font-family: "Montserrat", serif;
  font-size: 14px;
  line-height: 20px;
  color: #181818;
  margin: 0;
}

.featured-resort-card {
  width: 620px;
  max-width: calc(100% - 320px);
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

.featured-resort-card__image {
  width: 100%;
  height: auto;
  display: block;
}

.featured-resort-card__content {
  position: absolute;
  width: 300px;
  top: 32px;
  right: 19px;
  text-align: right;
  line-height: 20px;
  background-color: #fc0;
  color: #000;
  padding: 10px;
  box-sizing: border-box;
}

.featured-resort-card__content--static {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  text-align: left;
}

.featured-resort-card__label,
.featured-resort-card .title {
  display: block;
  font: italic 20px/20px "Montserrat", serif;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #000;
}

.featured-resort-card__body-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.featured-resort-card .feature,
.featured-resort-card .feature a,
.featured-resort-card .feature span {
  line-height: 40px;
  font-size: 40px;
  display: block;
  margin-bottom: 8px;
  color: #000;
  text-transform: uppercase;
  font: normal 26px/26px "Montserrat", Arial, Helvetica, sans-serif;
  text-align: right;
  text-decoration: none;
}

.featured-resort-card p {
  margin: 0 0 20px;
  font: 14px/18px "Montserrat", serif;
  color: #000;
}

/* ── Magazine ──────────────────────────────────────────────── */
.magazine-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 24px;
}

.magazine-section__articles {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.magazine-section__article img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 2px;
}

.magazine-section__article-placeholder {
  width: 100%;
  height: 160px;
  background: #e8e8e8;
  margin-bottom: 12px;
  border-radius: 2px;
}

.magazine-section__article h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.magazine-section__article p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.read-more {
  font-size: 11px;
  color: #79bde8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.magazine-section__sidebar {
  border-left: 1px solid #eee;
  padding-left: 24px;
}

.magazine-section__sidebar-logo {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.share-this a.share-this__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  margin-right: 6px;
  transition: background 0.2s;
}

.share-this a.share-this__icon svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.share-this a.share-this__icon:hover {
  background: #555;
}

.join-scout {
  margin-bottom: 24px;
}

.join-scout h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #333;
  color: #333;
  margin-bottom: 10px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.share-this h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.share-this a {
  display: inline-block;
  margin-right: 8px;
  font-size: 13px;
  color: #333;
}

.view-all-articles {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
}

/* ── Destinations Archive ──────────────────────────────────── */
.destinations-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.destinations-archive__header {
  max-width: 660px;
  margin: 0 auto 36px;
  text-align: center;
}

.destinations-archive__title {
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.destinations-archive__intro {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.destinations-archive__dest-badge {
  text-align: center;
  margin-bottom: 24px;
}

.destinations-archive__dest-intro {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

.destinations-archive__dest-intro a {
  color: inherit;
  text-decoration: none;
}

.destinations-archive__dest-intro a:hover {
  text-decoration: underline;
}

.destinations-archive__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 200px));
  gap: 40px 48px;
  justify-content: center;
  align-items: start;
  text-align: center;
}

.destinations-archive__state {
  margin-bottom: 20px;
}

.destinations-archive__state-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #222;
}

.destinations-archive__state-name a {
  color: inherit;
  text-decoration: none;
}

.destinations-archive__state-name a:hover {
  text-decoration: underline;
}

.destinations-archive__locs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.destinations-archive__locs li {
  margin-bottom: 2px;
}

.destinations-archive__locs a {
  font-size: 12px;
  color: #444;
  text-decoration: none;
}

.destinations-archive__locs a:hover {
  text-decoration: underline;
}

/* ── Magazine Archive (archive-magazine.php) ───────────────── */
.mag-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 160px 20px 80px;
}

.mag-page__header {
  margin-bottom: 20px;
}

.mag-page__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: #222;
}

.mag-page__empty {
  color: #888;
  font-size: 15px;
  padding: 60px 0;
}

/* ── Masonry grid ─────────────────────────────────────────── */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 228px;
  gap: 14px;
  grid-auto-flow: dense;
}

/* ── Card base ────────────────────────────────────────────── */
.mag-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #aed7f1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.2s;
}

.mag-card:hover {
  text-decoration: none;
  opacity: 0.88;
}

/* ── Card sizes ───────────────────────────────────────────── */
.mag-card--big {
  grid-column: span 2;
  grid-row: span 2;
}

.mag-card--vert {
  grid-column: span 1;
  grid-row: span 2;
}

.mag-card--horiz {
  grid-column: span 2;
  grid-row: span 1;
}

.mag-card--small {
  grid-column: span 1;
  grid-row: span 1;
}

/* ── Title overlay ────────────────────────────────────────── */
.mag-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.mag-card:not([style]) .mag-card__overlay,
.mag-card[style=""] .mag-card__overlay {
  background: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mag-card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
  text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
  display: block;
}

.mag-card:not([style]) .mag-card__title,
.mag-card[style=""] .mag-card__title {
  color: #222;
  text-shadow: none;
  font-size: 15px;
  padding: 0 8px;
}

/* ── Title size variants ──────────────────────────────────── */
.mag-card--big .mag-card__title {
  font-size: 22px;
}

.mag-card--horiz .mag-card__title {
  font-size: 15px;
}

.mag-card--vert .mag-card__title {
  font-size: 15px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 800px) {
  .mag-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .mag-card--big {
    grid-column: span 2;
    grid-row: span 2;
  }
  .mag-card--horiz {
    grid-column: span 2;
    grid-row: span 1;
  }
  .mag-card--vert {
    grid-column: span 1;
    grid-row: span 2;
  }
}
@media (max-width: 480px) {
  .mag-page {
    padding-top: 100px;
  }
  .mag-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .mag-card--big,
  .mag-card--horiz,
  .mag-card--vert {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* ── Press / As Seen In ────────────────────────────────────── */
.press-section {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 48px;
}

.press-section__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 24px;
}

.press-section__logos img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.press-section__logos img:hover {
  opacity: 0.9;
}

/* ── Location (Resort) Single Page ─────────────────────────────────────────── */
.location-single {
  max-width: 940px;
  margin: 0 auto;
  padding: 180px 20px 60px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.location-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.location-header__title {
  font-size: 31px;
  line-height: 31px;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
}

.location-header__subtitle {
  color: #c0392b;
  font-size: 14px;
  margin: 0;
}

.location-header__share {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  flex-shrink: 0;
}

.location-header__share-label {
  font-size: 12px;
  color: #555;
  margin-right: 4px;
}

.location-header__share .share-this__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  transition: background 0.2s;
}

.location-header__share .share-this__icon svg {
  fill: #fff;
  stroke: none;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.location-header__share .share-this__icon:hover {
  background: #555;
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.location-gallery-row {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  align-items: stretch;
}

.location-gallery {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  background: #111;
  min-height: 300px;
}

.location-gallery__panel {
  display: none;
  width: 100%;
  height: 100%;
}

.location-gallery__panel.is-active {
  display: block;
}

.location-gallery__track {
  width: 100%;
  height: 100%;
}

.location-gallery__slide {
  display: none;
  position: relative;
}

.location-gallery__slide.is-active {
  display: block;
}

.location-gallery__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.location-gallery__placeholder {
  width: 100%;
  height: 420px;
  background: #ccc;
}

.location-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
}

.location-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 28px;
  line-height: 1;
  padding: 4px 10px;
  cursor: pointer;
  z-index: 2;
  color: #333;
}

.location-gallery__btn--prev {
  left: 8px;
}

.location-gallery__btn--next {
  right: 8px;
}

.location-gallery__btn:hover {
  background: #fff;
}

.location-gallery__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.location-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.location-gallery__dot.is-active {
  background: #fff;
}

/* ── Sidebar (top of page) ───────────────────────────────────────────────── */
.location-sidebar-top {
  width: 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-left: none;
}

.location-sidebar-top__link {
  display: block;
  padding: 18px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.location-sidebar-top__link:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.location-sidebar-top__link.is-active {
  background: #f5f5f5;
  font-weight: 700;
}

.location-sidebar-top__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: #79bde8;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  line-height: 1.4;
}

.location-sidebar-top__cta:hover {
  background: #6aaedd;
  color: #000;
  text-decoration: none;
}

.location-sidebar-top__arrow {
  font-size: 18px;
  margin-left: 10px;
  flex-shrink: 0;
}

/* ── Tab nav ─────────────────────────────────────────────────────────────── */
.location-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0 0 32px;
  padding: 4px 0;
}

.location-tabs__link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.location-tabs__link + .location-tabs__link::before {
  content: "|";
  margin-right: 14px;
  color: #ccc;
}

.location-tabs__link:hover {
  color: #000;
  text-decoration: none;
}

/* ── Summary ─────────────────────────────────────────────────────────────── */
.location-summary {
  font-size: 14px;
  line-height: 25px;
  color: #333;
  margin-bottom: 32px;
}

/* ── Shared section styles ───────────────────────────────────────────────── */
.location-section__heading {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Montserrat", Arial, sans-serif;
}

.location-section__content {
  font-size: 14px;
  line-height: 25px;
  color: #333;
}

.location-section__content p {
  margin-bottom: 1.2em;
}

.location-section__content ul {
  list-style: none;
  margin: 0 0 1.2em 0;
  padding: 0;
}

.location-section__content li {
  margin-bottom: 6px;
  font-weight: 400;
  padding-left: 18px;
  position: relative;
}

.location-section__content li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #79bde8;
  font-weight: 400;
  font-size: 10px;
  top: 2px;
}

.location-section__content a {
  color: #79bde8;
}

.location-section__content--facts table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.location-section__content--facts td,
.location-section__content--facts th {
  padding: 6px 10px;
  border: 1px solid #eee;
  text-align: left;
}

.location-section__content--facts thead td,
.location-section__content--facts thead th {
  background: #f5f5f5;
  font-weight: 700;
}

/* ── Scout Loves & Tips (2-column) ──────────────────────────────────────── */
.location-loves-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

/* ── Individual sections ─────────────────────────────────────────────────── */
.location-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

/* ── Scores ──────────────────────────────────────────────────────────────── */
.location-scores {
  margin-bottom: 40px;
}

.location-scores__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}

.location-scores__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
}

.location-scores__bar-wrap {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.location-scores__bar {
  height: 100%;
  background: #333;
  border-radius: 3px;
}

.location-scores__label {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
}

.location-scores__value {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

/* ── Location Map (panel inside gallery row) ─────────────────────────────── */
.location-map__canvas {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}

/* ── Field Guide CTA ─────────────────────────────────────────────────────── */
.location-fieldguide {
  margin-bottom: 40px;
}

.location-fieldguide__link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #333;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
}

.location-fieldguide__link:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .location-gallery-row {
    flex-direction: column;
  }
  .location-sidebar-top {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    border-left: 1px solid #ddd;
    border-top: none;
  }
  .location-sidebar-top__link {
    flex: 1;
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
  .location-sidebar-top__cta {
    flex: 1;
  }
  .location-loves-tips {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-header {
    flex-direction: column;
    gap: 12px;
  }
  .location-single {
    padding-top: 100px;
  }
}
/* ── Resort Finder Page ──────────────────────────────────────────────────────── */
.rf-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 180px 20px 80px;
}

/* ── Intro ───────────────────────────────────────────────────────────────── */
.rf-intro {
  text-align: center;
  margin-bottom: 40px;
}

.rf-intro__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.rf-intro__text {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.rf-intro__text p {
  margin: 0 0 0.8em;
}
.rf-intro__text p:last-child {
  margin-bottom: 0;
}

/* ── Section ─────────────────────────────────────────────────────────────── */
.rf-section {
  margin-bottom: 0;
  border: 1px solid #ddd;
  border-bottom: none;
}

.rf-section:last-of-type {
  border-bottom: 1px solid #ddd;
}

.rf-section__header {
  background: #f5f5f5;
  padding: 14px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rf-section__num {
  color: #aaa;
}

.rf-section__body {
  padding: 32px 24px;
}

/* ── Q1: Destination badges ──────────────────────────────────────────────── */
.rf-dest-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rf-dest-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.rf-dest-badge__oval {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  background: #fff;
  transition: background 0.15s, color 0.15s;
}

.rf-dest-badge__label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
}

/* Q1 active: solid black with white text */
.rf-dest-badge.is-active .rf-dest-badge__oval {
  background: #333;
  color: #fff;
}

.rf-dest-badge:hover:not(.is-active) .rf-dest-badge__oval {
  background: #f5f5f5;
}

/* ── Q2: Group type icons ────────────────────────────────────────────────── */
.rf-group-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rf-group-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.rf-group-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e8f4fc;
  transition: background 0.15s;
}

.rf-group-option__icon svg {
  width: 44px;
  height: 44px;
  fill: #555;
  stroke: none;
  transition: fill 0.15s;
}

.rf-group-option__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  max-width: 90px;
  line-height: 1.4;
}

/* Q2 active: darker blue */
.rf-group-option.is-active .rf-group-option__icon {
  background: #4da6d9;
}

.rf-group-option.is-active .rf-group-option__icon svg {
  fill: #fff;
}

.rf-group-option:hover:not(.is-active) .rf-group-option__icon {
  background: #c8e6f5;
}

/* ── Q3: Month chips ─────────────────────────────────────────────────────── */
.rf-month-chips {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rf-month-chips.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.rf-month-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.rf-month-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e8f4fc;
  transition: background 0.15s;
}

.rf-month-chip__abbr {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  transition: color 0.15s;
}

.rf-month-chip__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.rf-month-chip.is-active .rf-month-chip__icon {
  background: #4da6d9;
}

.rf-month-chip.is-active .rf-month-chip__abbr {
  color: #fff;
}

.rf-month-chip:hover:not(.is-active) .rf-month-chip__icon {
  background: #c8e6f5;
}

.rf-month-hint {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 12px;
  font-style: italic;
}

/* ── Q4: Feature icons ───────────────────────────────────────────────────── */
.rf-feature-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.rf-feature-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.rf-feature-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e8f4fc;
  transition: background 0.15s;
}

.rf-feature-option__icon svg {
  width: 38px;
  height: 38px;
}

.rf-feature-option__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  max-width: 80px;
  line-height: 1.4;
}

.rf-feature-option.is-active .rf-feature-option__icon {
  background: #4da6d9;
}

.rf-feature-option.is-active .rf-feature-option__icon svg {
  filter: brightness(0) invert(1);
}

.rf-feature-option:hover:not(.is-active) .rf-feature-option__icon {
  background: #c8e6f5;
}

/* ── Sub-question panels ─────────────────────────────────────────────────── */
.rf-sub-questions {
  margin-top: 8px;
}

.rf-sub-q {
  display: none;
  padding: 24px 0 8px;
  border-top: 1px solid #eee;
  margin-top: 24px;
  animation: rfFadeIn 0.2s ease;
}

.rf-sub-q.is-active {
  display: block;
}

@keyframes rfFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rf-sub-q__label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

/* Slider */
.rf-slider-wrap {
  max-width: 420px;
}

.rf-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.rf-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #79bde8;
  cursor: pointer;
}

.rf-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: #888;
}

/* Radio & checkbox pills */
.rf-radios,
.rf-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rf-radio-label,
.rf-checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.15s, background 0.15s;
}

.rf-radio-label input,
.rf-checkbox-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rf-radio-label:has(input:checked),
.rf-checkbox-label:has(input:checked) {
  border-color: #4da6d9;
  background: #e8f4fc;
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.rf-submit-wrap {
  margin-top: 32px;
  text-align: center;
}

.rf-submit {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #79bde8;
  color: #222;
  border: none;
  padding: 18px 60px;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  max-width: 480px;
}

.rf-submit:hover {
  background: #5aaad8;
}

/* ── Results ─────────────────────────────────────────────────────────────── */
.rf-results {
  margin-bottom: 48px;
}

.rf-results__header {
  margin-bottom: 32px;
}

.rf-results__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.rf-results__subtitle {
  font-size: 13px;
  color: #888;
  margin: 0 0 12px;
}

.rf-results__footer {
  margin-top: 32px;
}

.rf-results__restart {
  font-size: 13px;
  color: #79bde8;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.rf-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.rf-result-card {
  display: flex;
  flex-direction: column;
}

.rf-result-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
  margin-bottom: 12px;
}

.rf-result-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rf-result-card__rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #333;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
}

.rf-result-card__location {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.rf-result-card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.2;
}

.rf-result-card__title a {
  color: #222;
  text-decoration: none;
}

.rf-result-card__title a:hover {
  color: #79bde8;
}

.rf-result-card__score {
  font-size: 12px;
  color: #79bde8;
  font-weight: 700;
  margin-bottom: 8px;
}

.rf-result-card__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.rf-result-card__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
}

.rf-result-card__cta:hover {
  color: #79bde8;
  border-color: #79bde8;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .rf-page {
    padding-top: 100px;
  }
  .rf-section__body {
    padding: 20px 16px;
  }
  .rf-dest-badge__oval {
    width: 76px;
    height: 42px;
    font-size: 14px;
  }
  .rf-group-option__icon {
    width: 68px;
    height: 68px;
  }
  .rf-group-option__icon svg {
    width: 34px;
    height: 34px;
  }
  .rf-month-chip__icon {
    width: 64px;
    height: 64px;
  }
  .rf-feature-option__icon {
    width: 64px;
    height: 64px;
  }
  .rf-group-options {
    gap: 12px;
  }
  .rf-feature-options {
    gap: 12px;
  }
  .rf-dest-badges {
    gap: 12px;
  }
}
/* ── Property Single Page (single-property.php) ──────────────────────────── */
.prop-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 20px 80px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.prop-header {
  margin-bottom: 20px;
}

.prop-header__back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  margin-bottom: 12px;
}
.prop-header__back:hover {
  color: #79bde8;
}

.prop-header__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.prop-header__badge {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.prop-header__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}

.prop-header__address {
  font-size: 13px;
  color: #79bde8;
  margin: 0;
}

/* ── Top: Gallery + Scout Review ─────────────────────────────────────────── */
.prop-top {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  margin-bottom: 0;
  align-items: start;
}

/* Gallery */
.prop-gallery {
  min-width: 0;
}

.prop-gallery__main {
  position: relative;
  background: #eee;
  overflow: hidden;
}

.prop-gallery__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.prop-gallery__placeholder {
  width: 100%;
  height: 380px;
  background: #ddd;
}

.prop-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  color: #333;
  z-index: 2;
  transition: background 0.15s;
}
.prop-gallery__arrow:hover {
  background: #fff;
}

.prop-gallery__arrow--prev {
  left: 0;
}

.prop-gallery__arrow--next {
  right: 0;
}

.prop-gallery__counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 2px;
}

.prop-gallery__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
}

.prop-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s;
}
.prop-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-gallery__thumb.is-active {
  border-color: #79bde8;
}
.prop-gallery__thumb:hover:not(.is-active) {
  border-color: #bbb;
}

/* Scout Review sidebar box */
.prop-review-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  background: #fafafa;
}

.prop-review-box__heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #222;
}

.prop-review-box__text {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 12px;
}

.prop-review-box__more {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}
.prop-review-box__more:hover {
  color: #79bde8;
}

/* ── Tab navigation ──────────────────────────────────────────────────────── */
.prop-tabs {
  display: flex;
  border-top: 2px solid #222;
  border-bottom: 1px solid #e0e0e0;
  margin: 20px 0 0;
  background: #fff;
  position: relative;
  z-index: 10;
}

.prop-tabs.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prop-tab {
  display: block;
  padding: 14px 22px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.prop-tab:hover {
  color: #222;
}
.prop-tab.is-active {
  color: #222;
  border-bottom-color: #222;
  font-weight: 700;
}

/* ── Body: content + sidebar ─────────────────────────────────────────────── */
.prop-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  margin-top: 28px;
  align-items: start;
}

/* ── Tab panels ──────────────────────────────────────────────────────────── */
.prop-panel {
  display: none;
}
.prop-panel.is-active {
  display: block;
}

/* Sub-nav */
.prop-subnav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.prop-subnav__link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: color 0.15s;
}
.prop-subnav__link:hover {
  color: #222;
}
.prop-subnav__link.is-active {
  color: #222;
  font-weight: 700;
}

.prop-subnav__sep {
  color: #ccc;
  font-size: 12px;
}

.prop-subpanel {
  display: none;
}
.prop-subpanel.is-active {
  display: block;
}

/* Scout Loves + Tips 2-col */
.prop-loves-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.prop-loves-tips__heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #222;
}

.prop-loves-tips__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prop-loves-tips__list li {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
}
.prop-loves-tips__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #79bde8;
}

/* Amenity icon strip */
.prop-amenity-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 28px;
}

.prop-amenity-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.prop-amenity-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.prop-amenity-svg svg {
  width: 28px;
  height: 28px;
  color: #555;
}

.prop-amenity-icon__label {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  line-height: 1.3;
}

/* Section headings */
.prop-section-heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #222;
}

/* Body text */
.prop-body-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.prop-body-text p {
  margin-bottom: 1.2em;
}
.prop-body-text p:last-child {
  margin-bottom: 0;
}

/* Deal box */
.prop-deal {
  background: #f9f9f9;
  border-left: 3px solid #d64235;
  padding: 16px 20px;
  margin: 24px 0;
}

.prop-deal__flag {
  font-size: 14px;
  font-weight: 700;
  color: #d64235;
  margin: 0 0 8px;
}

.prop-deal__details {
  font-size: 13px;
  color: #444;
}
.prop-deal__details p {
  margin: 0;
}

/* CTA buttons */
.prop-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.prop-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.prop-cta--primary {
  background: #79bde8;
  color: #222;
}
.prop-cta--primary:hover {
  background: rgb(86.1770700637, 171.8484076433, 226.0229299363);
}

.prop-cta--secondary {
  background: #fff;
  color: #222;
  border: 1px solid #222;
}
.prop-cta--secondary:hover {
  background: #f5f5f5;
}

/* Location map */
.prop-map {
  margin-bottom: 24px;
}

.prop-map__frame {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* Amenities list */
.prop-amenities-list {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  column-count: 2;
  column-gap: 32px;
}
.prop-amenities-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prop-amenities-list li {
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}
.prop-amenities-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #79bde8;
}

/* Rooms */
.prop-rooms {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prop-room {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.prop-room:last-child {
  border-bottom: none;
}

.prop-room__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.prop-room__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.prop-room__guests {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px;
}

.prop-room__details {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.prop-room__details ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.prop-room__details li {
  margin-bottom: 4px;
}

/* Inquire form */
.prop-inquire-form {
  max-width: 560px;
}

.prop-inquire-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prop-inquire-form__field {
  margin-bottom: 16px;
}
.prop-inquire-form__field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}
.prop-inquire-form__field input, .prop-inquire-form__field textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.15s;
}
.prop-inquire-form__field input:focus, .prop-inquire-form__field textarea:focus {
  border-color: #79bde8;
}
.prop-inquire-form__field textarea {
  resize: vertical;
}

/* ── Right sidebar ───────────────────────────────────────────────────────── */
.prop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.prop-sidebar__inquire {
  display: block;
  background: #79bde8;
  color: #222;
  text-decoration: none;
  padding: 14px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.15s;
}
.prop-sidebar__inquire:hover {
  background: rgb(86.1770700637, 171.8484076433, 226.0229299363);
}

.prop-sidebar__why {
  border: 2px solid #222;
  padding: 20px;
}

.prop-sidebar__why-heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-align: center;
}

.prop-sidebar__why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prop-sidebar__why-list li {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}
.prop-sidebar__why-list li:last-child {
  border-bottom: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .prop-top {
    grid-template-columns: 1fr;
  }
  .prop-review-box {
    display: none;
  }
  .prop-body {
    grid-template-columns: 1fr;
  }
  .prop-sidebar {
    position: static;
  }
  .prop-sidebar__inquire {
    display: none;
  }
}
@media (max-width: 620px) {
  .prop-page {
    padding-top: 80px;
  }
  .prop-loves-tips {
    grid-template-columns: 1fr;
  }
  .prop-amenities-list {
    column-count: 1;
  }
  .prop-room {
    grid-template-columns: 1fr;
  }
  .prop-inquire-form__row {
    grid-template-columns: 1fr;
  }
  .prop-tab {
    padding: 10px 14px;
    font-size: 11px;
  }
}
/* ── Destination Single Page ──────────────────────────────────────────────── */
.dest-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-color: #2c3e50;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.dest-hero--no-img {
  background: linear-gradient(135deg, #1a7dc4 0%, #2c3e50 100%);
}

.dest-hero__overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}

.dest-hero__title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: "Montserrat", Arial, sans-serif;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dest-tabs {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 130px;
  z-index: 50;
}

body.admin-bar .dest-tabs {
  top: 162px;
}

.dest-tabs__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
}

.dest-tab {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  color: #555;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.dest-tab:hover {
  color: #1a7dc4;
}
.dest-tab--active {
  color: #1a7dc4;
  border-bottom-color: #1a7dc4;
}
.dest-tab--cta {
  margin-left: auto;
  background: #1a7dc4;
  color: #fff;
  border-radius: 3px;
  padding: 10px 18px;
  margin-right: 0;
  border: none;
  font-size: 12px;
}
.dest-tab--cta:hover {
  background: rgb(21.2216216216, 102.027027027, 159.9783783784);
  color: #fff;
}

.dest-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.dest-panel {
  display: none;
}
.dest-panel--active {
  display: block;
}

.dest-intro {
  max-width: 780px;
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}
.dest-intro p {
  margin: 0 0 1em;
}
.dest-intro p:last-child {
  margin-bottom: 0;
}
.dest-intro a {
  color: #1a7dc4;
}

.dest-section-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  color: #222;
}

.dest-facts {
  margin-bottom: 56px;
}

.dest-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-fact {
  background: #f4f6f8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dest-fact__img-wrap {
  height: 160px;
  overflow: hidden;
}

.dest-fact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-fact__text {
  padding: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  flex: 1;
}

.dest-resorts {
  margin-bottom: 40px;
}

.dest-resorts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-resort-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.15s, transform 0.15s;
}
.dest-resort-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.dest-resort-card--soon {
  opacity: 0.75;
}

.dest-resort-card__img-wrap {
  position: relative;
  height: 160px;
  background: #f4f6f8;
  overflow: hidden;
}

.dest-resort-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.dest-resort-card:hover .dest-resort-card__img {
  transform: scale(1.04);
}

.dest-resort-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cde0f0 0%, #aed7f1 100%);
}

.dest-resort-card__soon-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 2px;
}

.dest-resort-card__body {
  padding: 14px;
}

.dest-resort-card__name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dest-resort-card__summary {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.dest-map {
  width: 100%;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

@media (max-width: 900px) {
  .dest-resorts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dest-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 660px) {
  .dest-hero {
    height: 260px;
  }
  .dest-hero__title {
    font-size: 22px;
  }
  .dest-resorts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-facts__grid {
    grid-template-columns: 1fr;
  }
  .dest-tab--cta {
    display: none;
  }
}
/* ── What is Scout page (page-what-is-scout.php) ───────────────────────────── */
/* section heading colour */
/* light-blue reasons background */
.wis-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

/* ── Shared section wrapper ──────────────────────────────────────────────── */
.wis-section {
  padding: 40px 0;
}

.wis-section__heading {
  font-size: 22px;
  font-weight: 400;
  color: #4dc3e8;
  text-align: center;
  margin: 0 0 24px;
  font-family: inherit;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.wis-divider {
  border: none;
  border-top: 2px solid #1a1a1a;
  margin: 0;
}

/* ── 1. Intro ─────────────────────────────────────────────────────────────── */
.wis-intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ── 2. Booking Process ──────────────────────────────────────────────────── */
.wis-process__subtitle {
  text-align: center;
  font-size: 15px;
  color: #333;
  margin: 0 0 32px;
}

.wis-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wis-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wis-step__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.wis-step__icon svg {
  width: 80px;
  height: 80px;
  display: block;
}

.wis-step__body {
  padding-top: 4px;
}

.wis-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.wis-step__text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ── 3. Who can book ─────────────────────────────────────────────────────── */
.wis-who__cards {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.wis-who__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.wis-who__icon {
  width: 100px;
  height: 100px;
}
.wis-who__icon svg {
  width: 100px;
  height: 100px;
  display: block;
}

.wis-who__label {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.wis-who__cta {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin: 0;
}
.wis-who__cta a {
  color: #4dc3e8;
  text-decoration: none;
}
.wis-who__cta a:hover {
  text-decoration: underline;
}

/* ── 4. Why book via Scout ───────────────────────────────────────────────── */
.wis-reasons {
  background: #e8f4fb;
  padding: 0 40px;
}

.wis-reason {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
}

.wis-reason__num {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
}

.wis-reason__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.wis-reason__text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.wis-reason__text a {
  color: #4dc3e8;
  text-decoration: none;
}
.wis-reason__text a:hover {
  text-decoration: underline;
}

.wis-reason__sep {
  border: none;
  border-top: 1px solid #c8dfe8;
  margin: 0;
}

/* ── 5. Testimonials ─────────────────────────────────────────────────────── */
.wis-testimonial {
  margin: 0;
  padding: 28px 0;
  text-align: center;
}

.wis-testimonial__quote {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 16px;
  font-style: normal;
}

.wis-testimonial__author {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: #1a1a1a;
}

.wis-testimonial__sep {
  border: none;
  border-top: 1px solid #ccc;
  width: 200px;
  margin: 0 auto;
}

/* ── 6. Team CTA ─────────────────────────────────────────────────────────── */
.wis-team-cta {
  background: #e8f4fb;
  text-align: center;
  padding: 40px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.wis-team-cta a {
  color: #4dc3e8;
  text-decoration: none;
}
.wis-team-cta a:hover {
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .wis-page {
    padding-top: 80px;
  }
  .wis-who__cards {
    gap: 32px;
  }
  .wis-reasons {
    padding: 0 20px;
  }
  .wis-reason__num {
    font-size: 32px;
    min-width: 44px;
  }
}
/* ════════════════════════════════════════════════════════════════
   Inner Pages — About, FAQs, Hoteliers, simple content pages
   ════════════════════════════════════════════════════════════════ */
/* ── Shared hero header ─────────────────────────────────────── */
.about-hero,
.faqs-hero,
.hoteliers-hero,
.inner-hero {
  text-align: center;
  padding: 100px 24px 40px;
  max-width: 780px;
  margin: 0 auto;
}

.about-hero__title,
.faqs-hero__title,
.hoteliers-hero__title,
.inner-hero__title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.about-hero__intro {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* ── Shared page wrapper ────────────────────────────────────── */
.about-page,
.faqs-page,
.hoteliers-page,
.inner-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── Divider ────────────────────────────────────────────────── */
.about-divider {
  border: none;
  border-top: 2px solid #1a1a1a;
  margin: 0 0 48px;
}

/* ── Section wrapper ────────────────────────────────────────── */
.about-section {
  margin-bottom: 48px;
}

.about-section__heading {
  font-size: 22px;
  font-weight: 400;
  color: #4dc3e8;
  margin: 0 0 32px;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT — Team cards
   ════════════════════════════════════════════════════════════════ */
.about-team {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-team__card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: flex-start;
}

.about-team__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #c8dfe8 url("/assets/images/icon_scout_badge.svg") center/60% no-repeat;
  flex-shrink: 0;
}

.about-team__name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.about-team__bio {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* Independence section */
.about-section--independence {
  background: #f7f9fb;
  padding: 32px 40px;
  margin-bottom: 0;
}

.about-independence {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Media quotes grid */
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-media__quote {
  background: #f7f9fb;
  border-left: 4px solid #4dc3e8;
  padding: 20px 24px;
  margin: 0;
}
.about-media__quote p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin: 0 0 8px;
}
.about-media__quote cite {
  font-size: 12px;
  font-style: normal;
  color: #888;
  font-weight: 600;
}

/* Company section */
.about-section--company p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 14px;
}
.about-section--company a {
  color: #4dc3e8;
  text-decoration: none;
}
.about-section--company a:hover {
  text-decoration: underline;
}

.about-address {
  font-size: 14px;
  font-style: normal;
  color: #444;
  margin: 0 0 14px;
}

/* ════════════════════════════════════════════════════════════════
   FAQs page
   ════════════════════════════════════════════════════════════════ */
.faqs-page {
  max-width: 800px;
}

.faqs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #1a1a1a;
  margin-bottom: 48px;
}

.faqs-nav__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 18px;
  border-right: 1px solid #e0e0e0;
  transition: background 0.15s, color 0.15s;
}
.faqs-nav__link:first-child {
  border-left: 1px solid #e0e0e0;
}
.faqs-nav__link:hover {
  background: #4dc3e8;
  color: #fff;
}

.faqs-section {
  margin-bottom: 48px;
}

.faqs-section__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4dc3e8;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.faqs-item {
  border-bottom: 1px solid #e0e0e0;
}

.faqs-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1.4;
  font-family: inherit;
}
.faqs-question:hover {
  color: #4dc3e8;
}

.faqs-question__icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  color: #4dc3e8;
}

.faqs-answer {
  padding: 0 0 20px;
}
.faqs-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
.faqs-answer a {
  color: #4dc3e8;
  text-decoration: none;
}
.faqs-answer a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════
   Hoteliers page
   ════════════════════════════════════════════════════════════════ */
.hoteliers-hero__sub {
  font-size: 20px;
  color: #4dc3e8;
  margin: 8px 0 0;
}

.hoteliers-body {
  max-width: 680px;
  margin: 0 auto;
}

.hoteliers-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 20px;
}
.hoteliers-content a {
  color: #4dc3e8;
  text-decoration: none;
}
.hoteliers-content a:hover {
  text-decoration: underline;
}

.hoteliers-contact {
  background: #f7f9fb;
  border-left: 4px solid #4dc3e8;
  padding: 24px 28px;
  margin: 32px 0;
}

.hoteliers-contact__heading {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.hoteliers-stats {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.hoteliers-stat {
  text-align: center;
}

.hoteliers-stat__num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #4dc3e8;
  line-height: 1;
  margin-bottom: 6px;
}

.hoteliers-stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.hoteliers-media {
  margin-top: 32px;
  text-align: center;
}

.hoteliers-media__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 12px;
}

.hoteliers-media__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.hoteliers-media__list li {
  font-size: 13px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════
   Simple content pages (Disclaimer, Terms, Privacy)
   Uses the default .inner-content wrapper
   ════════════════════════════════════════════════════════════════ */
.inner-content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.inner-content-page h1 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 40px;
  text-align: center;
}
.inner-content-page h2 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
}
.inner-content-page p {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
  margin: 0 0 18px;
}
.inner-content-page strong {
  color: #1a1a1a;
}
.inner-content-page a {
  color: #4dc3e8;
  text-decoration: none;
}
.inner-content-page a:hover {
  text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .about-hero__title,
  .faqs-hero__title,
  .hoteliers-hero__title {
    font-size: 28px;
  }
  .about-hero,
  .faqs-hero,
  .hoteliers-hero {
    padding-top: 80px;
  }
  .about-team__card {
    grid-template-columns: 1fr;
  }
  .about-team__avatar {
    width: 80px;
    height: 80px;
  }
  .about-media {
    grid-template-columns: 1fr;
  }
  .about-section--independence {
    padding: 24px 20px;
  }
  .faqs-nav {
    flex-direction: column;
  }
  .faqs-nav__link {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .hoteliers-stats {
    gap: 24px;
  }
  .hoteliers-stat__num {
    font-size: 32px;
  }
}
/* ── Contact Us page (page-contact-us.php) ──────────────────────────────── */
.cu-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

/* ── Intro ───────────────────────────────────────────────────────────────── */
.cu-heading {
  font-size: 28px;
  font-weight: 400;
  color: #4dc3e8;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
}

.cu-intro__body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ── Contact info table ──────────────────────────────────────────────────── */
.cu-contact-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 13px;
}
.cu-contact-table tr + tr td {
  padding-top: 8px;
}
.cu-contact-table td {
  padding: 6px 12px 6px 0;
  vertical-align: top;
  color: #333;
}
.cu-contact-table td:last-child {
  padding-right: 0;
}
.cu-contact-table td a {
  color: #4dc3e8;
  text-decoration: none;
}
.cu-contact-table td a:hover {
  text-decoration: underline;
}
.cu-contact-table__label {
  color: #555;
  width: 52%;
}

/* ── CTA banner ──────────────────────────────────────────────────────────── */
.cu-banner {
  background: #1d4a6e;
  color: #fff;
  text-align: center;
  padding: 22px 24px;
  margin: 40px 0 0;
  border-radius: 3px;
}

.cu-banner__text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Form wrapper ────────────────────────────────────────────────────────── */
.cu-form-wrap {
  margin-top: 48px;
}

.cu-form__heading {
  font-size: 20px;
  font-weight: 400;
  color: #4dc3e8;
  margin: 0 0 28px;
  letter-spacing: 0.03em;
}

.cu-form-divider {
  border: none;
  border-top: 1px solid #d8e4ec;
  margin: 40px 0;
}

/* ── Field groups ────────────────────────────────────────────────────────── */
.cu-field-group {
  margin-bottom: 28px;
}

.cu-field-group__title {
  font-size: 13px;
  font-weight: 600;
  color: #1d4a6e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cu-field-group__desc {
  font-size: 12px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.5;
}

/* ── Inputs ──────────────────────────────────────────────────────────────── */
.cu-input,
.cu-select,
.cu-textarea {
  font-family: inherit;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #d8e4ec;
  border-radius: 3px;
  padding: 8px 10px;
  outline: none;
  transition: border-color 0.15s;
}
.cu-input:focus,
.cu-select:focus,
.cu-textarea:focus {
  border-color: #4dc3e8;
}

.cu-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
  min-width: 200px;
}
.cu-select--wide {
  width: 100%;
  max-width: 480px;
}
.cu-select--sm {
  min-width: 80px;
}

.cu-input--wide {
  width: 100%;
  max-width: 420px;
}
.cu-input--date {
  min-width: 160px;
}

.cu-textarea {
  width: 100%;
  max-width: 600px;
  resize: vertical;
  line-height: 1.6;
}

/* ── Dates row ───────────────────────────────────────────────────────────── */
.cu-dates-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.cu-date-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cu-date-field label {
  font-size: 12px;
  font-weight: 600;
  color: #1d4a6e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cu-field-note {
  font-size: 11px;
  color: #888;
  margin: 4px 0 14px;
  font-style: italic;
}

/* ── Guests ──────────────────────────────────────────────────────────────── */
.cu-guests {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cu-inline-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.cu-inline-field label {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

/* ── Child ages ──────────────────────────────────────────────────────────── */
.cu-child-ages {
  margin-top: 14px;
  background: #f5fafd;
  border: 1px solid #d8e4ec;
  border-radius: 3px;
  padding: 16px;
}

.cu-child-age-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.cu-child-age-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cu-child-age-row label {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
  min-width: 60px;
}

/* ── Date flexibility toggle ─────────────────────────────────────────────── */
.cu-toggle-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cu-toggle {
  background: #fff;
  border: 1px solid #d8e4ec;
  border-radius: 3px;
  padding: 6px 20px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
}
.cu-toggle--active {
  background: #4dc3e8;
  border-color: #4dc3e8;
  color: #fff;
}
.cu-toggle:hover:not(.cu-toggle--active) {
  border-color: #4dc3e8;
  color: #4dc3e8;
}

/* ── Tooltip ─────────────────────────────────────────────────────────────── */
.cu-tooltip-wrap {
  position: relative;
  display: inline-block;
}

.cu-tooltip-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4dc3e8;
  background: #fff;
  color: #4dc3e8;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  line-height: 16px;
  text-align: center;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cu-tooltip {
  display: none;
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 10;
  background: #1d4a6e;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 3px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.cu-tooltip--visible {
  display: block;
}

/* ── Checkboxes ──────────────────────────────────────────────────────────── */
.cu-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 12px;
}

.cu-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}
.cu-checkbox-label input[type=checkbox] {
  cursor: pointer;
}

.cu-newsletter {
  padding: 12px 0;
}

/* ── Name/location rows ──────────────────────────────────────────────────── */
.cu-name-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cu-name-row .cu-input {
  flex: 1;
  min-width: 160px;
}

/* ── Submit ──────────────────────────────────────────────────────────────── */
.cu-submit-row {
  margin-top: 32px;
}

.cu-submit-btn {
  background: #4dc3e8;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.cu-submit-btn:hover {
  background: rgb(40.8686567164, 182.8208955224, 227.3313432836);
}

.cu-submit-note {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
  font-style: italic;
}

/* ── Success / error messages ────────────────────────────────────────────── */
.cu-success {
  background: #e8f8f0;
  border: 1px solid #a3d9b8;
  border-radius: 3px;
  padding: 24px 32px;
  text-align: center;
}
.cu-success h2 {
  color: #2a7a50;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 400;
}
.cu-success p {
  color: #3a6a50;
  margin: 0;
  font-size: 14px;
}

.cu-error {
  background: #fde8e8;
  border: 1px solid #f0a0a0;
  border-radius: 3px;
  padding: 12px 16px;
  color: #c00;
  font-size: 13px;
  margin-bottom: 20px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .cu-page {
    padding: 60px 16px 60px;
  }
  .cu-dates-row,
  .cu-guests {
    flex-direction: column;
    gap: 12px;
  }
  .cu-select--wide,
  .cu-input--wide,
  .cu-textarea {
    max-width: 100%;
  }
  .cu-contact-table {
    display: block;
  }
  .cu-contact-table tr, .cu-contact-table td {
    display: block;
  }
  .cu-contact-table__label {
    color: #555;
    font-size: 11px;
    padding-bottom: 2px;
  }
}
/* ── Hotels-In page (/hotels-in/{location}) ─────────────────────────────── */
/* ── Two-column layout ───────────────────────────────────────────────────── */
.hi-page {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 140px 20px 80px;
  min-height: 80vh;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.hi-sidebar {
  width: 240px;
  flex-shrink: 0;
  padding-right: 32px;
}

.hi-sidebar__section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8ed;
}
.hi-sidebar__section:last-of-type {
  border-bottom: none;
}

.hi-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 12px;
}

/* ── Show Me radios ──────────────────────────────────────────────────────── */
.hi-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  margin-bottom: 6px;
}
.hi-radio-label input[type=radio] {
  cursor: pointer;
}
.hi-radio-label--active {
  color: #333;
  font-weight: 600;
}

/* ── Refine By section ───────────────────────────────────────────────────── */
.hi-sidebar__section--filters .hi-sidebar__title {
  display: inline;
}

.hi-clear-all {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  color: #666;
  text-decoration: none;
}
.hi-clear-all:hover {
  color: #1d4a6e;
}

.hi-filter-group {
  margin-top: 16px;
}

.hi-filter-group__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 8px;
}

.hi-check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  margin-bottom: 5px;
  line-height: 1.4;
}
.hi-check-label input[type=checkbox] {
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.hi-check-label:hover {
  color: #333;
}

/* ── Why Book with Scout box ─────────────────────────────────────────────── */
.hi-why-box {
  border: 2px solid #333;
  padding: 20px 16px;
  text-align: center;
  margin-top: 24px;
}

.hi-why-box__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}
.hi-why-box__icon svg {
  width: 100%;
  height: 100%;
}

.hi-why-box__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.5;
}

.hi-why-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  text-align: left;
}
.hi-why-box__list li {
  font-size: 11px;
  color: #666;
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.hi-why-box__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #79bde8;
}

.hi-why-box__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4a6e;
  text-decoration: none;
}
.hi-why-box__link:hover {
  text-decoration: underline;
}

/* ── Main content ────────────────────────────────────────────────────────── */
.hi-main {
  flex: 1;
  min-width: 0;
}

.hi-main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 3px solid #333;
  padding-bottom: 12px;
}

.hi-main__title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0;
  color: #333;
}

.hi-view-toggle {
  display: flex;
  gap: 6px;
}

.hi-view-btn {
  background: none;
  border: 1px solid #e2e8ed;
  border-radius: 3px;
  padding: 6px 8px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}
.hi-view-btn--active {
  border-color: #1d4a6e;
  color: #1d4a6e;
}

/* ── Tabs ────────────────────────────────────────────────────────────────── */
.hi-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8ed;
}

.hi-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  margin-bottom: -1px;
  letter-spacing: 0.02em;
  transition: color 0.15s, border-color 0.15s;
}
.hi-tab--active {
  color: #333;
  border-bottom-color: #333;
}
.hi-tab:hover:not(.hi-tab--active) {
  color: #333;
}

/* ── Card list ───────────────────────────────────────────────────────────── */
.hi-card-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #e2e8ed;
  border: 1px solid #e2e8ed;
}

.hi-card {
  display: flex;
  background: #fff;
  min-height: 200px;
  transition: box-shadow 0.15s;
}
.hi-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hi-card__img-wrap {
  flex-shrink: 0;
  width: 280px;
  overflow: hidden;
  display: block;
  background: #f5f5f5;
}

.hi-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.hi-card:hover .hi-card__img {
  transform: scale(1.03);
}

.hi-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #aed7f1;
}

.hi-card__body {
  flex: 1;
  padding: 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Style badge (top-right of card body) ────────────────────────────────── */
.hi-card__style {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hi-card__style--exceptional {
  color: #b8860b;
}
.hi-card__style--superior {
  color: #79bde8;
}
.hi-card__style--moderate {
  color: #666;
}
.hi-card__style--value {
  color: #4caf50;
}

.hi-card__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  padding-right: 80px;
}
.hi-card__title a {
  color: #333;
  text-decoration: none;
}
.hi-card__title a:hover {
  color: #1d4a6e;
}

.hi-card__loc {
  font-size: 12px;
  color: #79bde8;
  margin: 0;
}

.hi-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 4px 0 0;
  flex: 1;
}

.hi-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  gap: 12px;
}

.hi-card__lift {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

.hi-card__pin {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}

.hi-card__btn {
  background: #79bde8;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hi-card__btn:hover {
  background: rgb(86.1770700637, 171.8484076433, 226.0229299363);
  text-decoration: none;
}

/* ── No results ──────────────────────────────────────────────────────────── */
.hi-no-results,
.hi-no-filter-results {
  padding: 32px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.hi-no-results a,
.hi-no-filter-results a {
  color: #1d4a6e;
}

/* ── Packages panel ──────────────────────────────────────────────────────── */
.hi-packages-msg {
  padding: 40px;
  text-align: center;
  color: #666;
  font-size: 14px;
  background: #f5f5f5;
  border: 1px solid #e2e8ed;
  border-radius: 3px;
}
.hi-packages-msg a {
  color: #1d4a6e;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hi-page {
    flex-direction: column;
    padding-top: 120px;
  }
  .hi-sidebar {
    width: 100%;
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hi-sidebar .hi-sidebar__section {
    margin-bottom: 0;
  }
  .hi-sidebar .hi-why-box {
    display: none;
  }
  .hi-card__img-wrap {
    width: 180px;
  }
}
@media (max-width: 580px) {
  .hi-card {
    flex-direction: column;
  }
  .hi-card__img-wrap {
    width: 100%;
    height: 200px;
  }
  .hi-card__style {
    position: static;
    margin-left: auto;
  }
}
/* ── Search Results Page ─────────────────────────────────────────────────── */
.search-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 160px 20px 80px;
}

.search-page__header {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 28px;
}

.search-page__title {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  color: #222;
}

.search-page__query {
  color: #1a7dc4;
  font-style: italic;
  text-transform: none;
}

.search-page__count {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}

.search-page__form {
  display: flex;
  gap: 0;
  max-width: 520px;
}

.search-page__input {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}
.search-page__input:focus {
  border-color: #1a7dc4;
}

.search-page__submit {
  padding: 10px 20px;
  background: #1a7dc4;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.search-page__submit:hover {
  background: #156aaa;
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-result {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.search-result:first-child {
  border-top: none;
}

.search-result__img-link {
  display: block;
  flex-shrink: 0;
}

.search-result__img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.search-result__img-placeholder {
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #cde0f0 0%, #aed7f1 100%);
  border-radius: 3px;
}

.search-result__body {
  min-width: 0;
}

.search-result__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a7dc4;
  background: #e8f3fb;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.search-result__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
}
.search-result__title a {
  color: #222;
  text-decoration: none;
}
.search-result__title a:hover {
  color: #1a7dc4;
}

.search-result__abstract {
  font-size: 13px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

.search-page__pagination {
  margin-top: 40px;
}
.search-page__pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.search-page__pagination .page-numbers {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}
.search-page__pagination .page-numbers:hover, .search-page__pagination .page-numbers.current {
  background: #1a7dc4;
  border-color: #1a7dc4;
  color: #fff;
}

.search-no-results {
  padding: 60px 0;
  text-align: center;
  color: #888;
  font-size: 15px;
}

@media (max-width: 500px) {
  .search-result {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }
  .search-result__img,
  .search-result__img-placeholder {
    width: 64px;
    height: 48px;
  }
}
/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
  padding: 48px 20px;
  font-size: 13px;
}

#footer .holder {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col--brand .footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}

.footer-col--brand .footer-logo__text {
  font-family: "LeMondeJournal", Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.copyright {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 12px;
}

.copyright a {
  color: #aaa;
}

.copyright a:hover {
  color: #333;
  text-decoration: none;
}

.footer-col .title {
  display: block;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col .title::before,
.footer-col .title::after {
  display: none;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #666;
  font-size: 13px;
}

.footer-col a:hover {
  color: #000;
  text-decoration: none;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits__columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .deals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .magazine-section__inner {
    grid-template-columns: 1fr;
  }
  .magazine-section__articles {
    grid-column: auto;
  }
  #footer .holder {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #header-mobile {
    display: flex;
  }
  #header {
    display: none;
  }
  .hero {
    height: 100vh;
    height: 100svh;
  }
  .hero__tagline {
    font-size: 24px;
  }
  .benefits__columns {
    grid-template-columns: 1fr;
  }
  .deals__grid {
    grid-template-columns: 1fr;
  }
  .field-guide-section .features {
    flex-direction: column;
  }
  .field-guide-section .col.fieldguides,
  .featured-resort-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-right: 0;
  }
  .featured-resort-card__content {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    text-align: left;
  }
  .featured-resort-card .feature,
  .featured-resort-card .feature a,
  .featured-resort-card .feature span {
    text-align: left;
  }
  .magazine-section__articles {
    grid-template-columns: 1fr;
  }
  #footer .holder {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination__carousel {
    gap: 10px;
  }
}
