/* Homepage — premium private selection layout */

.hp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 7rem 0 4rem;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(6,40,28,.55) 100%);
  z-index: 1;
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hp-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hp-hero__title {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 1.25rem;
}

.hp-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 52ch;
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 300;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.hp-btn--primary {
  background: #06281C;
  color: #fff;
  border-color: #06281C;
}

.hp-btn--primary:hover {
  background: #0a3d2a;
  color: #fff;
}

.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}

.hp-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hp-btn--outline {
  background: transparent;
  color: #06281C;
  border-color: #06281C;
}

.hp-btn--outline:hover {
  background: #06281C;
  color: #fff;
}

.hp-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.hp-section--cream {
  background: #fff;
}

.hp-section--dark {
  background: #06281C;
  color: #fff;
}

.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hp-section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hp-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hp-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #06281C;
  margin-bottom: 0.75rem;
}

.hp-section--dark .hp-kicker {
  color: rgba(255,255,255,0.7);
}

.hp-section-title {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hp-section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.hp-section--dark .hp-section-lead {
  color: rgba(255,255,255,0.85);
}

/* Qualification form */
.hp-qualify {
  background: #fff;
  border: none;
  border-top: 1px solid #e8e4dc;
  padding: 2.5rem 0;
}

.hp-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.hp-form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6560;
}

.hp-form-group input,
.hp-form-group select,
.hp-form-group textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 0;
}

.hp-form-group input:focus,
.hp-form-group select:focus,
.hp-form-group textarea:focus {
  outline: none;
}

.hp-form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.hp-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hp-form-note {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

/* Property cards */
.hp-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-property-card {
  background: #fff;
  border: 1px solid #ece8e0;
  display: flex;
  flex-direction: column;
}

.hp-property-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hp-property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hp-property-card:hover .hp-property-card__img img {
  transform: scale(1.03);
}

.hp-property-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-property-card__loc {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.35rem;
}

.hp-property-card__name {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.hp-property-card__meta {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.hp-property-card__highlights {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 1.25rem;
  flex: 1;
}

.hp-property-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Split promo blocks */
.hp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hp-split__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hp-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-split__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hp-split__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hp-section--dark .hp-split__list li {
  border-color: rgba(255,255,255,0.15);
}

/* Gateway cards row */
.hp-gateways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hp-gateway {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.hp-gateway img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp-gateway::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,40,28,.85) 100%);
}

.hp-gateway:hover img {
  transform: scale(1.04);
}

.hp-gateway__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
}

.hp-gateway__title {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 0.5rem;
}

.hp-gateway__text {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.9;
  margin: 0 0 1rem;
  max-width: 40ch;
}

.hp-gateway__cta {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hp-form-grid,
  .hp-properties,
  .hp-gateways {
    grid-template-columns: 1fr;
  }

  .hp-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hp-form-group--span2 {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .hp-hero {
    min-height: 85vh;
    padding-top: 6rem;
  }

  .hp-hero__inner,
  .hp-container {
    padding: 0 1rem;
  }

  .hp-qualify {
    padding: 1.25rem;
  }

  .hp-form-grid {
    grid-template-columns: 1fr;
  }

  .hp-gateway {
    min-height: 260px;
  }
}

/* ——— Shared arrow link (no underline) ——— */
.hp-arrow-link,
.hp-link-arrow,
a.experience-cta.hp-link-arrow,
a.exp-cta.hp-link-arrow,
span.hp-link-arrow,
span.hp-gateway__cta.hp-link-arrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.3;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  cursor: pointer;
  transition: color 0.2s ease;
  box-shadow: none !important;
}

.hp-arrow-link::after,
.hp-link-arrow::after,
a.experience-cta.hp-link-arrow::after,
a.exp-cta.hp-link-arrow::after,
span.hp-link-arrow:not(.hp-link-arrow--on-dark)::after,
span.hp-gateway__cta.hp-link-arrow:not(.hp-link-arrow--on-dark)::after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  align-self: center;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2306281C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E") center center / 0.72em 0.72em no-repeat;
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

span.hp-gateway__cta.hp-link-arrow.hp-link-arrow--on-dark::after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  align-self: center;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E") center center / 0.72em 0.72em no-repeat;
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hp-arrow-link:hover::after,
.hp-link-arrow:hover::after,
a.experience-cta.hp-link-arrow:hover::after,
a.exp-cta.hp-link-arrow:hover::after,
.hp-gateway:hover span.hp-gateway__cta.hp-link-arrow::after,
.hp-gateway:hover .hp-link-arrow--on-dark::after,
.exp-card:hover .exp-cta.hp-link-arrow::after,
.exp-card:hover .exp-cta::after {
  opacity: 1;
  transform: translateX(3px);
}

.hp-arrow-link--dark,
.hp-link-arrow--dark {
  color: #06281C !important;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.hp-link-arrow--on-dark,
.hp-link-arrow--on-dark.hp-gateway__cta {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hp-link-arrow--on-dark::after,
.hp-gateway__cta.hp-link-arrow--on-dark::after {
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  align-self: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: 0.72em 0.72em;
}

.ski-fever-section--concierge .hp-link-arrow--on-dark {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0;
  align-self: flex-start;
}

.experience-cta.hp-link-arrow--dark {
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.hp-section--white {
  background: #fff;
}

/* ——— Compact hero (Le Collectionist–inspired) ——— */

.head-section--video {
  background-image: none !important;
}

.head-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.head-section.head-section--compact {
  min-height: clamp(460px, 52vh, 560px);
  align-items: center;
  justify-content: center;
  padding: 3rem 0 2rem;
  overflow: visible;
  z-index: 20;
  isolation: isolate;
}

.head-section--compact::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.1) 35%,
    rgba(255, 255, 255, 0.88) 78%,
    #fff 100%
  );
}

.head-content.head-content--compact {
  min-height: auto !important;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto !important;
  margin-top: 0 !important;
  padding: 0 2rem !important;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  position: relative;
  z-index: 5;
  transform: translateY(-2.25rem);
  margin-bottom: 0;
}

.head-section--compact .head-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.head-section--compact .main-title {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.head-section--compact .main-title::after {
  display: none;
}

.head-section--compact .subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* Hero search field layout → see hero-search.css (loads last) */

/* Search card */
.hero-search-wrap {
  width: 100%;
  position: relative;
  z-index: 200;
}

.hero-search-wrap:has(.search-dropdown.active) {
  z-index: 9999;
}

.hero-search-card {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 200;
}

.head-section--compact .hero-search-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  background: #fff;
  border-radius: 0;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 0;
  min-height: 64px;
  max-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 200;
}

/* Sliding field highlight */
.hero-search-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease;
  will-change: transform, width;
}

.hero-search-slider.is-visible {
  opacity: 1;
}

.head-section--compact .hero-search-bar.is-expanded {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.12);
}

/* Floating flyout panel — slides between fields */
.hero-search-flyout {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  z-index: 10001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.hero-search-flyout.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-search-flyout-body {
  position: relative;
  min-height: 0;
}

.hero-search-flyout.is-sliding .hero-search-step-panel.active {
  opacity: 0.35;
  transition: opacity 0.12s ease;
}

.hero-search-step-panel {
  display: none;
  position: static;
  margin: 0;
  opacity: 1;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-search-step-panel.active {
  display: block;
  pointer-events: auto;
}

.hero-search-flyout.is-open:not(.is-sliding) .hero-search-step-panel.active {
  animation: heroPanelIn 0.22s ease forwards;
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.head-section--compact .search-field {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
  background: transparent;
  cursor: pointer;
  padding: 0;
  gap: 0;
}

.head-section--compact .search-input:focus,
.head-section--compact .search-input--trigger:focus,
.head-section--compact .hero-search-submit:focus,
.head-section--compact .search-button:focus {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

.head-section--compact .search-field.is-active,
.head-section--compact .search-field:has(.search-dropdown.active) {
  z-index: 300;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.head-section--compact .search-field-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06281C;
  padding: 0.75rem 1.25rem 0.2rem;
  margin: 0;
  pointer-events: none;
  line-height: 1.2;
  text-align: left;
}

.head-section--compact .search-input {
  width: 100%;
  padding: 0 1.25rem 0.75rem;
  margin: 0;
  min-height: 0;
  height: auto;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: 1.35;
  box-sizing: border-box;
}

.head-section--compact .search-field *,
.head-section--compact .search-input:focus,
.head-section--compact .search-input--trigger:focus,
.head-section--compact .details-row select:focus,
.head-section--compact .details-row input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.head-section--compact .details-row select:focus,
.head-section--compact .details-row input:focus {
  border-color: #ddd !important;
}

.head-section--compact .search-input::placeholder {
  color: #888;
}

.head-section--compact .search-input--trigger {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 1.25rem 0.75rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
  line-height: 1.35;
  box-sizing: border-box;
}

.head-section--compact .search-input--trigger:not(:empty) {
  color: #1a1a1a;
}

/* Details dropdown inside search bar */
.head-section--compact .details-dropdown {
  width: min(360px, 92vw);
  left: 0;
  right: auto;
}

.details-dropdown-inner {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.details-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.details-row label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.details-row select,
.details-row input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e0e0e0;
  font-family: inherit;
  font-size: 0.88rem;
  border-radius: 0;
  background: #fff;
}

.details-row select:focus,
.details-row input:focus {
  outline: none;
  border-color: #ccc;
  box-shadow: none;
}

.guests-done-btn,
.details-done-btn {
  display: block;
  width: calc(100% - 2.5rem);
  margin: 0.5rem 1.25rem 1.25rem;
  padding: 0.75rem 1rem;
  background: #06281C;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
}

.guests-done-btn:hover,
.details-done-btn:hover {
  background: #0a3d2a;
}

.head-section--compact .calendar-day.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

/* Date range selection */
.head-section--compact .calendar-day.in-range {
  background: rgba(6, 40, 28, 0.14);
  color: #06281C;
  border-radius: 0;
}

.head-section--compact .calendar-day.range-start,
.head-section--compact .calendar-day.range-end {
  background: #06281C;
  color: #fff;
}

.head-section--compact .calendar-day.range-start {
  border-radius: 999px 0 0 999px;
}

.head-section--compact .calendar-day.range-end {
  border-radius: 0 999px 999px 0;
}

.head-section--compact .calendar-day.range-start.range-end {
  border-radius: 999px;
}

.head-section--compact .details-field {
  flex: 1.1 1 0;
}

.head-section--compact .search-separator {
  width: 1px;
  align-self: stretch;
  margin: 0.55rem 0;
  background: #e8e8e8;
  flex-shrink: 0;
}

.head-section--compact .hero-search-submit {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.75rem;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #06281C;
  min-width: 120px;
  min-height: 64px;
  transition: background 0.2s ease;
}

.head-section--compact .hero-search-submit:hover {
  background: #0a3d2a;
  transform: none;
}

/* Desktop: dropdowns live in flyout */
@media (min-width: 769px) {
  .search-field .search-dropdown {
    display: none !important;
  }

  .head-section--compact .hero-search-flyout .destination-dropdown {
    width: 100%;
    max-height: min(420px, 52vh);
    overflow-y: auto;
  }

  .head-section--compact .hero-search-flyout .calendar-dropdown,
.head-section--compact .hero-search-flyout .guests-dropdown,
.head-section--compact .hero-search-flyout .details-dropdown,
.head-section--compact .hero-search-flyout .hero-search-dates-panel {
    width: 100%;
  }
}

/* Unified Airbnb-style date range picker */
.hero-search-dates-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 0.75rem 1rem 1rem;
}

.calendar-month-block {
  min-width: 0;
}

.hero-search-dates-panel .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.calendar-header-spacer {
  flex: 0 0 2rem;
}

.head-section--compact .search-field.is-active {
  background: #fafafa;
}

.head-section--compact .search-field.date-field.is-active + .search-separator {
  opacity: 0.5;
}

/* Mobile inline dropdowns */
@media (max-width: 768px) {
  .hero-search-flyout {
    display: none !important;
  }

  .hero-search-slider {
    display: none !important;
  }
}

.head-section--compact .search-dropdown {
  margin-top: 0;
  border-radius: 0;
  background: #fff;
  border: none;
  z-index: 10000;
  box-shadow: none;
  transform: none !important;
}

.head-section--compact .search-field .search-dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.head-section--compact .search-field .search-dropdown.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.head-section--compact .destination-dropdown {
  width: min(520px, 92vw);
  left: 0;
  right: auto;
}

.head-section--compact .calendar-dropdown,
.head-section--compact .guests-dropdown {
  width: min(340px, 92vw);
  left: 0;
  right: auto;
}

.head-section--compact .destination-item {
  border-radius: 0;
  transition: background 0.2s ease;
}

.head-section--compact .destination-item:hover {
  background: #f4f1ea;
}

/* Sharper activity imagery — source files vary in resolution */
.experiences-section .exp-card img {
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.experiences-section .exp-card:hover img {
  transform: scale(1.05) translateZ(0);
}

/* Experiences — use shared hp-link-arrow */
.experiences-section .exp-cta.hp-link-arrow {
  text-transform: none;
  font-size: 0.95rem;
}

.collection-section--mandate {
  background: #fff;
  padding: 2.5rem 0 4rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.collection-section--mandate .container,
.hp-container-aligned {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.collection-section--mandate .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.collection-section--mandate .hp-kicker {
  margin-bottom: 0.75rem;
}

/* Mandate listings — buy-a-home style (open, no boxed cards) */
.hp-properties--mandate {
  margin-bottom: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mandate-property-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  overflow: visible;
}

.mandate-property-card__media {
  display: block;
  overflow: hidden;
  background: #f4f1ea;
  text-decoration: none;
  color: inherit;
}

.mandate-property-card__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mandate-property-card:hover .mandate-property-card__image {
  transform: scale(1.03);
}

.mandate-property-card__rule {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 1.25rem 0 0;
  flex-shrink: 0;
}

.mandate-property-card__content {
  padding: 1.25rem 0 0;
  border-top: none;
  margin-top: 0;
}

.mandate-property-card__name {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.mandate-property-card__location {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 0.85rem;
}

.mandate-property-card__details {
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1.15rem;
  max-width: 42ch;
}

.mandate-property-card__cta {
  margin-top: 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hp-properties--mandate {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mandate-property-card__image {
    height: 260px;
  }
}

/* Concierge block */
.ski-fever-section--concierge {
  background: #06281C;
  color: #fff;
}

.ski-fever-section--concierge .ski-fever-container {
  max-width: 1040px;
  align-items: center;
}

.ski-fever-section--concierge .ski-fever-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-right: 1rem;
}

.ski-fever-section--concierge .ski-fever-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 300;
  color: #fff;
}

.ski-fever-section--concierge .ski-fever-description {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 46ch;
  opacity: 0.9;
  color: #fff;
}

/* Gateways — arrow CTAs via hp-link-arrow */
.home-gateways .hp-container {
  max-width: 1040px;
}

.hp-gateway__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: none;
  padding-bottom: 0;
  text-decoration: none;
}

.collection-intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  color: #555;
  line-height: 1.65;
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .head-section--compact .hero-search-bar {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .head-section--compact .search-field {
    flex: none;
    width: 100%;
    border-bottom: 1px solid #ececec;
  }

  .head-section--compact .search-field:last-of-type {
    border-bottom: none;
  }

  .head-section--compact .search-separator {
    display: none;
  }

  .head-section--compact .hero-search-submit {
    width: 100%;
    min-height: 52px;
    margin: 0;
    order: unset !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 768px) {
  .head-section.head-section--compact {
    min-height: auto;
    padding: 4.5rem 0 1.5rem;
    align-items: flex-start;
  }

  .head-content.head-content--compact {
    padding: 0 1rem !important;
    justify-content: flex-start;
    min-height: auto !important;
    margin-top: 0 !important;
    transform: none;
    margin-bottom: 0;
  }

  .head-section--compact .head-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }

  .head-section--compact .main-title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.12;
  }

  .head-section--compact .main-title br {
    display: none;
  }

  .head-section--compact .subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  .hero-search-card {
    max-width: 100%;
  }

  .head-section--compact .hero-search-bar {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 !important;
    overflow: visible !important;
    flex-direction: column !important;
  }

  .head-section--compact .search-field {
    align-items: stretch !important;
    flex-direction: column !important;
    min-height: auto !important;
    display: flex !important;
    border-bottom: 1px solid #ececec;
  }

  .head-section--compact .search-field:last-of-type {
    border-bottom: none;
  }

  .head-section--compact .search-input,
  .head-section--compact .search-input--trigger {
    min-height: auto !important;
    line-height: 1.4 !important;
  }

  .head-section--compact .hero-search-submit.search-button {
    order: 10 !important;
    border-radius: 0 !important;
    min-height: 54px;
    font-size: 0.7rem;
  }

  .head-section--compact .dropdown-section {
    padding: 1rem 1rem 0.5rem;
  }

  .head-section--compact .calendar-container {
    padding: 0.5rem 1rem 1rem;
  }

  .head-section--compact .guests-options {
    padding: 0.75rem 1rem 0;
  }

  .head-section--compact .details-dropdown-inner {
    padding: 1rem;
  }

  .head-section--compact .hero-search-bar .search-field-label {
    padding: 0 !important;
  }

  .head-section--compact .hero-search-bar .search-input,
  .head-section--compact .hero-search-bar .search-input--trigger {
    padding: 0 !important;
    white-space: normal;
  }

  .head-section--compact .search-field-label {
    padding: 0.75rem 1rem 0;
    font-size: 0.6rem;
  }

  .head-section--compact .search-input,
  .head-section--compact .search-input--trigger {
    padding: 0.2rem 1rem 0.85rem;
    font-size: 0.95rem;
    white-space: normal;
  }

  .hero-search-dates-panel__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0.85rem;
  }

  .head-section--compact .search-field.date-field[data-step="2"].is-active {
    background: #fafafa;
  }

  /* Mobile: inline dropdowns below each field */
  .head-section--compact .search-field .search-dropdown {
    position: static;
    width: 100% !important;
    max-width: 100%;
    left: auto !important;
    right: auto;
    margin: 0;
    border: none;
    border-top: 1px solid #f0f0f0;
    box-shadow: none;
    transform: none !important;
    transition: none !important;
    display: none;
    max-height: none;
    overflow: visible;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .head-section--compact .search-field .search-dropdown.active {
    display: block;
    pointer-events: auto;
    overflow: visible;
    transform: none !important;
  }

  .head-section--compact .destination-dropdown,
  .head-section--compact .calendar-dropdown,
  .head-section--compact .guests-dropdown,
  .head-section--compact .details-dropdown {
    width: 100% !important;
  }

  .head-section--compact .details-field {
    flex: none;
    width: 100%;
  }
}

.villa-meta {
  font-size: 0.8rem;
  color: #777;
  margin: 0.25rem 0 0.5rem;
}

.villa-highlight {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #444;
  margin: 0 0 0.75rem;
}

.villa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.villa-actions .hp-btn {
  padding: 0.55rem 0.9rem;
  font-size: 0.65rem;
}

.home-gateways {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.iconic-collection-section--mandate .iconic-title {
  font-weight: 300;
}

.collection-section--mandate .collection-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.collection-section--mandate .collection-cta .hp-link-arrow--dark {
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ——— Why Le Gatherist — pillars (editorial, no cards) ——— */
.hp-pillars-section {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  border-top: none;
  position: relative;
}

.hp-pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 4rem), 1200px);
  height: 1px;
  background: #ece8e0;
}

.hp-pillars-section .hp-section-head {
  max-width: 56ch;
}

.hp-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.75rem;
}

.hp-pillar {
  padding: 0 1.75rem;
  text-align: left;
}

.hp-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.15rem;
  color: #06281C;
}

.hp-pillar__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hp-pillar + .hp-pillar {
  border-left: 1px solid #ece8e0;
}

.hp-pillar__label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #06281C;
}

.hp-pillar__title {
  margin: 0 0 0.75rem;
  font-family: 'Alliance No.2', 'Alliance 2.0', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #111;
}

.hp-pillar__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #666;
}

@media (max-width: 1024px) {
  .hp-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-pillar:nth-child(3) {
    border-left: none;
    border-top: 1px solid #ece8e0;
    padding-top: 2rem;
  }

  .hp-pillar:nth-child(4) {
    border-top: 1px solid #ece8e0;
    padding-top: 2rem;
  }

  .hp-pillar:nth-child(2),
  .hp-pillar:nth-child(4) {
    border-left: 1px solid #ece8e0;
  }
}

@media (max-width: 640px) {
  .hp-pillars {
    grid-template-columns: 1fr;
  }

  .hp-pillars-section::before {
    width: calc(100% - 2rem);
  }

  .hp-pillar,
  .hp-pillar + .hp-pillar,
  .hp-pillar:nth-child(2),
  .hp-pillar:nth-child(3),
  .hp-pillar:nth-child(4) {
    border-left: none;
    border-top: 1px solid #ece8e0;
    padding: 1.75rem 0 0;
  }

  .hp-pillar:first-child {
    border-top: none;
    padding-top: 0;
  }
}
