:root {
  --nv-ink: #18231f;
  --nv-ink-soft: #3f4b46;
  --nv-forest: #1d4f46;
  --nv-forest-dark: #143b34;
  --nv-sage: #dce7df;
  --nv-terracotta: #b8442d;
  --nv-terracotta-dark: #94351f;
  --nv-sand: #f6f1e8;
  --nv-sand-deep: #ece4d6;
  --nv-paper: #fffdf9;
  --nv-white: #ffffff;
  --nv-border: #deded8;
  --nv-border-strong: #c8cbc4;
  --nv-muted: #5c6762;
  --nv-danger: #a6382d;
  --nv-shadow-sm: 0 8px 24px rgba(24, 35, 31, 0.08);
  --nv-shadow-md: 0 18px 52px rgba(24, 35, 31, 0.13);
  --nv-radius-sm: 10px;
  --nv-radius-md: 16px;
  --nv-radius-lg: 24px;
  --nv-font-sans:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --nv-font-display: "DM Serif Display", Georgia, serif;
  --bs-body-font-family: var(--nv-font-sans);
  --bs-body-color: var(--nv-ink);
  --bs-body-bg: var(--nv-paper);
  --bs-link-color: var(--nv-ink);
  --bs-link-hover-color: var(--nv-forest);
  --bs-border-color: var(--nv-border);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  overflow-x: clip;
  color: var(--nv-ink);
  background: var(--nv-paper);
  font-family: var(--nv-font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  text-underline-offset: 0.18em;
}

a[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.62;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

:where(
  a,
  button,
  summary,
  [role="button"],
  [tabindex]:not([tabindex="-1"], input, select, textarea)
):focus-visible {
  outline: 3px solid rgba(184, 68, 45, 0.5) !important;
  outline-offset: 3px;
}

::selection {
  color: var(--nv-white);
  background: var(--nv-forest);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1100;
  padding: 0.75rem 1rem;
  border-radius: var(--nv-radius-sm);
  color: var(--nv-white);
  background: var(--nv-ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: var(--nv-white);
  transform: translateY(0);
}

.btn {
  min-height: 44px;
  border-radius: 999px;
  padding-inline: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-lg {
  min-height: 52px;
  padding-inline: 1.45rem;
  font-size: 0.95rem;
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--nv-terracotta);
  --bs-btn-border-color: var(--nv-terracotta);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--nv-terracotta-dark);
  --bs-btn-hover-border-color: var(--nv-terracotta-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a94731;
  --bs-btn-active-border-color: #a94731;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #aa8d84;
  --bs-btn-disabled-border-color: #aa8d84;
}

.btn-outline-dark {
  --bs-btn-color: var(--nv-ink);
  --bs-btn-border-color: var(--nv-border-strong);
  --bs-btn-hover-color: var(--nv-white);
  --bs-btn-hover-bg: var(--nv-ink);
  --bs-btn-hover-border-color: var(--nv-ink);
}

.btn-quiet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  border: 0;
  color: var(--nv-ink);
  background: transparent;
  text-decoration: underline;
}

.form-control,
.form-select,
.input-group-text {
  min-height: 52px;
  border-color: var(--nv-border-strong);
  border-radius: 14px;
  background-color: var(--nv-white);
  font-size: 0.92rem;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.form-control,
.form-select {
  padding: 0.72rem 0.9rem;
}

.form-control::placeholder {
  color: #737e79;
  opacity: 1;
}

.form-select {
  padding-right: 2.75rem;
  background-position: right 0.9rem center;
}

.form-control:hover:not(:disabled, :focus),
.form-select:hover:not(:disabled, :focus) {
  border-color: #aeb5b0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--nv-forest);
  outline: 0;
  background-color: var(--nv-white);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.14);
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-control[aria-invalid="true"],
.form-select[aria-invalid="true"] {
  border-color: var(--nv-danger);
  box-shadow: none;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
.form-control[aria-invalid="true"]:focus,
.form-select[aria-invalid="true"]:focus {
  border-color: var(--nv-danger);
  box-shadow: 0 0 0 0.2rem rgba(166, 56, 45, 0.12);
}

.input-group {
  border-radius: 14px;
  transition: box-shadow 160ms ease;
}

.input-group:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.14);
}

.input-group:focus-within
  > :is(.form-control, .form-select, .input-group-text) {
  border-color: var(--nv-forest);
}

.input-group > :is(.form-control, .form-select):focus {
  z-index: 3;
  box-shadow: none;
}

.input-group:has(.is-invalid, [aria-invalid="true"]) {
  box-shadow: 0 0 0 0.2rem rgba(166, 56, 45, 0.12);
}

.input-group:has(.is-invalid, [aria-invalid="true"])
  > :is(.form-control, .form-select, .input-group-text) {
  border-color: var(--nv-danger);
}

.form-check-input:focus {
  border-color: var(--nv-forest);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.18);
}

.form-check-input.is-invalid:focus,
.form-check-input[aria-invalid="true"]:focus {
  border-color: var(--nv-danger);
  box-shadow: 0 0 0 0.2rem rgba(166, 56, 45, 0.14);
}

.form-check-input:checked {
  border-color: var(--nv-forest);
  background-color: var(--nv-forest);
}

.site-header {
  z-index: 1030;
  border-bottom: 1px solid rgba(24, 35, 31, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .navbar {
  min-height: 76px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--nv-forest);
  font-family: var(--nv-font-display);
  font-size: 1.65rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark:hover {
  color: var(--nv-forest-dark);
}

.brand-mark__symbol {
  flex: 0 0 auto;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 0.9rem;
  color: var(--nv-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.navbar-nav .nav-link::after {
  position: absolute;
  right: 0.9rem;
  bottom: 0.45rem;
  left: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--nv-terracotta);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-host-link {
  min-height: 44px;
  color: var(--nv-ink);
  font-size: 0.88rem;
  text-decoration: none;
}

.nav-host-link:hover {
  color: var(--nv-forest);
  background: var(--nv-sand);
}

.icon-button,
.account-button {
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  color: var(--nv-ink);
  background: var(--nv-white);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.icon-button:hover,
.account-button:hover {
  border-color: var(--nv-border-strong);
  box-shadow: var(--nv-shadow-sm);
  transform: translateY(-1px);
}

.account-button {
  gap: 0.55rem;
  padding: 0.28rem 0.32rem 0.28rem 0.8rem;
}

.account-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--nv-white);
  background: var(--nv-forest);
  font-size: 0.75rem;
  font-weight: 800;
}

.avatar--large {
  width: 44px;
  height: 44px;
  font-size: 0.78rem;
}

.account-menu {
  width: min(330px, calc(100vw - 2rem));
  min-width: 300px;
  padding: 0.5rem;
  border: 1px solid var(--nv-border);
  border-radius: 18px;
  background: var(--nv-white);
  box-shadow: var(--nv-shadow-md);
}

.account-dropdown > .account-menu {
  position: absolute !important;
  inset: calc(100% + 0.7rem) 0 auto auto !important;
  margin: 0 !important;
  transform: none !important;
}

.account-dropdown > .account-menu::before {
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--nv-border);
  border-left: 1px solid var(--nv-border);
  background: var(--nv-white);
  content: "";
  transform: rotate(45deg);
}

.account-menu__profile {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 13px;
  background: var(--nv-sand);
}

.account-menu__identity {
  min-width: 0;
}

.account-menu__identity strong,
.account-menu__identity small {
  display: block;
}

.account-menu__identity strong {
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu__identity small {
  overflow: hidden;
  color: var(--nv-muted);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu__status {
  grid-column: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.3rem;
  margin-top: -0.35rem;
  color: var(--nv-forest);
  font-size: 0.68rem;
  font-weight: 800;
}

.account-menu__links {
  padding-block: 0.45rem;
}

.account-menu .dropdown-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  color: var(--nv-ink);
}

.account-menu .dropdown-item:hover,
.account-menu .dropdown-item:focus-visible {
  color: var(--nv-ink);
  background: var(--nv-sand);
}

.account-menu__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--nv-forest);
  background: var(--nv-sage);
  font-size: 1rem;
}

.account-menu .dropdown-item strong,
.account-menu .dropdown-item small {
  display: block;
}

.account-menu .dropdown-item strong {
  font-size: 0.82rem;
}

.account-menu .dropdown-item small {
  color: var(--nv-muted);
  font-size: 0.66rem;
}

.account-menu__count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--nv-white);
  background: var(--nv-terracotta);
  font-size: 0.68rem;
  font-weight: 800;
}

.account-menu__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.5rem 0.4rem 0.15rem;
  border-top: 1px solid var(--nv-border);
}

.account-menu__footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  color: var(--nv-ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.account-menu__footer a:hover {
  color: var(--nv-ink);
  background: var(--nv-sand);
}

.hero-section {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 7.5rem) 0 2.25rem;
  overflow: hidden;
  color: var(--nv-white);
  background: #18352e;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(14, 34, 29, 0.92) 0%,
    rgba(14, 34, 29, 0.66) 52%,
    rgba(14, 34, 29, 0.2) 100%
  );
  content: "";
}

.hero-section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgba(12, 30, 25, 0.55), transparent);
  content: "";
}

.hero-copy {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  color: #e9c5b8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--muted {
  color: var(--nv-terracotta-dark);
}

.eyebrow--light {
  color: #f2c9bc;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 1rem;
  font-family: var(--nv-font-display);
  font-size: clamp(3.1rem, 7.2vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.search-panel {
  position: relative;
  z-index: 2;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: var(--nv-ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 60px rgba(8, 24, 20, 0.28);
}

.search-field {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0.3rem;
  border: 0;
}

.search-field:not(:last-of-type)::after {
  display: none;
}

.search-control-shell > label {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0;
  color: var(--nv-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-transform: uppercase;
}

.search-control-shell > label i,
.date-range-control__label i {
  color: var(--nv-terracotta);
  font-size: 0.9rem;
}

.search-control-shell {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--nv-sand);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.search-control-shell:hover {
  border-color: var(--nv-border-strong);
  background: var(--nv-white);
}

.search-control-shell:focus-within {
  border-color: var(--nv-forest);
  background: var(--nv-white);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.12);
}

.search-field .form-control,
.search-field .form-select {
  min-width: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--nv-ink);
  background-color: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: none;
}

.search-control-shell > .form-control,
.search-control-shell > .form-select {
  min-height: 34px;
}

.search-control-shell > .form-control:focus-visible,
.search-control-shell > .form-select:focus-visible,
.search-field .date-range-control input:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

.search-action {
  padding: 0.3rem;
}

.search-field .form-select {
  padding-right: 1.8rem;
  background-position: right 0.1rem center;
}

.search-field--destination {
  flex-grow: 1.25;
}

.search-field--dates {
  flex-grow: 1.4;
}

.search-field--guests {
  flex-grow: 0.72;
}

.date-range-control {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--nv-border-strong);
  border-radius: 14px;
  background: var(--nv-white);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.date-range-control:hover {
  border-color: #aeb5b0;
}

.date-range-control:focus-within {
  border-color: var(--nv-forest);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.12);
}

.date-range-control:has(.is-invalid) {
  border-color: var(--nv-danger);
  box-shadow: 0 0 0 0.2rem rgba(166, 56, 45, 0.1);
}

.date-range-control--search {
  min-height: 70px;
  border-color: transparent;
  background: var(--nv-sand);
}

.date-range-control--search:hover,
.date-range-control--search:focus-within {
  background: var(--nv-white);
}

.date-range-control__field,
.search-field .date-range-control__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.date-range-control__field:focus-within {
  background: rgba(29, 79, 70, 0.055);
}

.date-range-control:has(.is-invalid) .date-range-control__field:focus-within {
  background: rgba(166, 56, 45, 0.05);
}

.date-range-control__label,
.search-field .date-range-control__label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--nv-ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.date-range-control input,
.search-field .date-range-control input {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 0.1rem 0;
  border: 0;
  border-radius: 0;
  color: var(--nv-ink);
  background: transparent;
  background-image: none;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: none;
}

.date-range-control input:focus,
.date-range-control input.is-invalid:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.date-range-control input::-webkit-calendar-picker-indicator {
  margin-left: 0.2rem;
  cursor: pointer;
  opacity: 0.58;
}

.date-range-control__connector {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  color: var(--nv-forest);
}

.date-range-control__connector::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--nv-border);
  content: "";
}

.date-range-control__connector i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--nv-border);
  border-radius: 50%;
  background: var(--nv-white);
  font-size: 0.78rem;
}

.search-submit {
  min-width: 118px;
  height: 100%;
  min-height: 70px;
}

.submit-label,
.submit-loading {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-label {
  display: inline-flex;
}

.submit-loading:not(.d-none) {
  display: inline-flex;
}

.form-error {
  margin: 0.35rem 0 0;
  padding: 0.45rem 0.75rem;
  color: var(--nv-danger);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-top: 1.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.hero-proof span {
  position: relative;
}

.hero-proof span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1.1rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.hero-proof strong {
  color: var(--nv-white);
  font-weight: 800;
}

.category-section {
  border-bottom: 1px solid var(--nv-border);
  background: var(--nv-paper);
}

.category-rail {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-chip {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 64px;
  padding: 0.55rem 0.9rem;
  border: 0;
  color: var(--nv-muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  scroll-snap-align: start;
}

.category-chip::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0;
  left: 0.85rem;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--nv-forest);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.category-chip i {
  font-size: 1.15rem;
}

.category-chip:hover,
.category-chip.active {
  color: var(--nv-ink);
}

.category-chip.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-space {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.property-header h2,
.newsletter-card h2,
.trust-heading h2 {
  margin: 0 0 0.4rem;
  font-family: var(--nv-font-display);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-heading p {
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.results-toolbar {
  flex: 0 0 auto;
}

.view-toggle {
  display: flex;
  gap: 0.2rem;
  padding: 0.25rem;
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  background: var(--nv-white);
}

.view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.8rem;
  border: 0;
  border-radius: 999px;
  color: var(--nv-muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
}

.view-button.active {
  color: var(--nv-white);
  background: var(--nv-ink);
}

.toolbar-select {
  width: auto;
  min-width: 156px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.toolbar-button {
  min-height: 48px;
  white-space: nowrap;
}

.filter-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 0.2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--nv-white);
  background: var(--nv-terracotta);
  font-size: 0.68rem;
}

.property-card {
  --card-border: transparent;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--nv-radius-md);
  background: transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.property-card:hover,
.property-card:focus-within {
  --card-border: var(--nv-border);
  background: var(--nv-white);
  box-shadow: var(--nv-shadow-sm);
  transform: translateY(-3px);
}

.property-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--nv-radius-md);
  background: var(--nv-sand-deep);
  aspect-ratio: 4 / 3;
}

.property-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.property-card:hover .property-card__media img,
.property-card:focus-within .property-card__media img {
  transform: scale(1.035);
}

.property-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  max-width: calc(100% - 4.2rem);
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--nv-white);
  background: rgba(24, 35, 31, 0.86);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.property-badge--light {
  color: var(--nv-ink);
  background: rgba(255, 255, 255, 0.9);
}

.property-badge--dark {
  background: rgba(24, 35, 31, 0.93);
}

.wishlist-button {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--nv-white);
  background: rgba(24, 35, 31, 0.45);
  font-size: 1.15rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.wishlist-button:hover {
  background: rgba(24, 35, 31, 0.7);
  transform: scale(1.06);
}

.wishlist-button[aria-pressed="true"] {
  color: #ff7c69;
  background: var(--nv-white);
}

.property-header .btn-quiet[data-wishlist] {
  position: static;
  width: auto;
  height: auto;
  color: var(--nv-ink);
  background: transparent;
  font-size: inherit;
  backdrop-filter: none;
}

.property-header .btn-quiet[data-wishlist][aria-pressed="true"] i {
  color: var(--nv-terracotta);
}

.property-card__body {
  flex: 1;
  padding: 1rem 0.3rem 0.35rem;
}

.property-card:hover .property-card__body,
.property-card:focus-within .property-card__body {
  padding-inline: 0.8rem;
}

.property-card__location {
  margin: 0 0 0.05rem;
  color: var(--nv-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.property-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.property-card h3 a {
  color: var(--nv-ink);
  text-decoration: none;
}

.rating {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.25rem;
  color: var(--nv-ink);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.rating i {
  color: var(--nv-terracotta);
  font-size: 0.68rem;
}

.rating--new {
  color: var(--nv-forest);
}

.property-card__meta,
.property-card__availability {
  margin: 0.4rem 0 0;
  color: var(--nv-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.property-card__availability {
  min-height: 1.15rem;
  color: var(--nv-forest);
  font-weight: 700;
}

.property-card__price {
  margin-top: 0.75rem;
  color: var(--nv-ink-soft);
  font-size: 0.81rem;
}

.property-card__price strong {
  color: var(--nv-ink);
  font-size: 0.95rem;
}

.property-card__price span {
  color: var(--nv-muted);
}

.property-card--unavailable .property-card__image-link img {
  filter: saturate(0.65);
}

.property-card--unavailable .property-card__availability {
  color: var(--nv-danger);
}

.skeleton-card span,
.skeleton-card i {
  display: block;
  border-radius: var(--nv-radius-sm);
  background: linear-gradient(90deg, #edeae3 25%, #f8f6f1 50%, #edeae3 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite linear;
}

.skeleton-card span {
  border-radius: var(--nv-radius-md);
  aspect-ratio: 4 / 3;
}

.skeleton-card i {
  width: 75%;
  height: 14px;
  margin-top: 1rem;
}

.skeleton-card i:last-child {
  width: 52%;
  margin-top: 0.55rem;
}

@keyframes skeleton-loading {
  to {
    background-position: -200% 0;
  }
}

.empty-state,
.error-state {
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  border: 1px dashed var(--nv-border-strong);
  border-radius: var(--nv-radius-lg);
  text-align: center;
  background: var(--nv-sand);
}

.empty-state__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--nv-forest);
  background: var(--nv-sage);
  font-size: 1.45rem;
}

.empty-state h3,
.error-state h3 {
  margin-bottom: 0.35rem;
  font-family: var(--nv-font-display);
  font-size: 2rem;
}

.empty-state p,
.error-state p {
  margin: 0 auto 1.25rem;
  color: var(--nv-muted);
}

.results-map {
  position: sticky;
  top: 96px;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  background: var(--nv-sand);
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-topbar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid rgba(24, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--nv-shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.map-price {
  position: absolute;
  z-index: 2;
  min-height: 44px;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(24, 35, 31, 0.16);
  border-radius: 999px;
  color: var(--nv-ink);
  background: var(--nv-white);
  box-shadow: var(--nv-shadow-sm);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.map-price:hover,
.map-price.active {
  color: var(--nv-white);
  background: var(--nv-forest);
  transform: scale(1.06);
}

.map-price--1 {
  top: 28%;
  left: 22%;
}
.map-price--2 {
  top: 46%;
  left: 62%;
}
.map-price--3 {
  top: 66%;
  left: 32%;
}
.map-price--4 {
  top: 77%;
  left: 68%;
}
.map-price--5 {
  top: 42%;
  left: 40%;
}

.editorial-section {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.editorial-card {
  min-height: 520px;
  border-radius: var(--nv-radius-lg);
  background: var(--nv-forest-dark);
}

.editorial-card__media {
  min-height: 360px;
}

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

.editorial-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--nv-white);
}

.editorial-card__content h2 {
  margin: 0 0 1rem;
  font-family: var(--nv-font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.editorial-card__content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.featured-section {
  border-top: 1px solid var(--nv-border);
}

.property-breadcrumb {
  margin-bottom: 1.35rem;
  font-size: 0.8rem;
}

.property-breadcrumb a {
  color: var(--nv-muted);
}

.property-header {
  margin-bottom: 1.75rem;
}

.property-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.7rem;
  color: var(--nv-muted);
  font-size: 0.82rem;
}

.property-subtitle > *:not(:last-child)::after {
  margin-left: 0.7rem;
  color: var(--nv-border-strong);
  content: "·";
}

.property-subtitle a {
  color: var(--nv-ink);
  font-weight: 700;
}

.gallery-desktop {
  position: relative;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  height: min(48vw, 560px);
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--nv-radius-lg);
}

.gallery-image {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--nv-sand-deep);
}

.gallery-image--main {
  grid-row: 1 / 3;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 180ms ease,
    transform 400ms ease;
}

.gallery-image:hover img,
.gallery-image:focus-visible img {
  filter: brightness(0.92);
  transform: scale(1.025);
}

.gallery-all {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-height: 44px;
  border: 1px solid rgba(24, 35, 31, 0.15);
  box-shadow: var(--nv-shadow-sm);
  font-size: 0.8rem;
}

.gallery-mobile {
  margin-inline: -1rem;
}

.gallery-mobile .carousel-item {
  aspect-ratio: 4 / 3;
}

.gallery-mobile .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-counter {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  min-height: 44px;
  font-size: 0.76rem;
}

.property-content {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.detail-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--nv-border);
}

.detail-block:first-child {
  padding-top: 0;
}

.detail-block h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.detail-block > p,
.detail-block .collapse p {
  max-width: 720px;
  color: var(--nv-ink-soft);
}

.detail-intro h3 {
  margin-bottom: 0.2rem;
}

.detail-intro > div > div > p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.host-avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border: 3px solid var(--nv-white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--nv-border);
}

.stay-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--nv-border);
}

.stay-highlights > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stay-highlights > div > i {
  width: 24px;
  color: var(--nv-forest);
  font-size: 1.25rem;
  text-align: center;
}

.stay-highlights span {
  display: flex;
  flex-direction: column;
}

.stay-highlights strong {
  font-size: 0.9rem;
}

.stay-highlights small {
  color: var(--nv-muted);
  font-size: 0.78rem;
}

.detail-link {
  min-height: 44px;
  color: var(--nv-ink);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.amenity-grid > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--nv-ink-soft);
  font-size: 0.88rem;
}

.amenity-grid i {
  width: 24px;
  color: var(--nv-forest);
  font-size: 1.2rem;
  text-align: center;
}

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

.room-grid article {
  padding: 1.25rem;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-md);
}

.room-grid i {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--nv-forest);
  font-size: 1.35rem;
}

.room-grid h4 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.room-grid p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.78rem;
}

.booking-card {
  top: 100px;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  background: var(--nv-white);
  box-shadow: var(--nv-shadow-md);
}

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

.booking-card__header strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.booking-card__header span,
.booking-card__header a {
  color: var(--nv-muted);
  font-size: 0.72rem;
}

.booking-card__header a {
  color: var(--nv-ink);
  font-weight: 700;
}

.booking-card__header i {
  color: var(--nv-terracotta);
}

.booking-dates {
  width: 100%;
}

.booking-dates .date-range-control__field {
  padding: 0.62rem 0.72rem;
}

.booking-dates .date-range-control__label,
.guest-control small {
  display: block;
  margin: 0;
  color: var(--nv-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-dates input {
  width: 100%;
  min-height: 32px;
  padding: 0.1rem 0;
  border: 0;
  color: var(--nv-ink);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-card .guest-control,
.mobile-booking-offcanvas .guest-control {
  margin-top: 0.65rem;
}

.guest-control__trigger {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--nv-border-strong);
  border-radius: 14px;
  color: var(--nv-ink);
  background: var(--nv-white);
  text-align: left;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.guest-control__trigger:hover {
  border-color: #aeb5b0;
  background: var(--nv-sand);
}

.guest-control__trigger:focus-visible {
  border-color: var(--nv-forest);
  outline: 0 !important;
  background: var(--nv-white);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.12);
}

.guest-control__trigger[aria-expanded="true"] {
  border-color: var(--nv-forest);
  background: var(--nv-white);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.12);
}

.guest-control__trigger span {
  display: block;
}

.guest-control__trigger strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}

.guest-menu {
  width: 100%;
  min-width: 290px;
  margin-top: 0.4rem !important;
  border: 1px solid var(--nv-border);
  border-radius: 16px;
  background: var(--nv-white);
  box-shadow: var(--nv-shadow-md);
}

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

.guest-row + .guest-row {
  border-top: 1px solid var(--nv-border);
}

.guest-row > span:first-child {
  display: flex;
  flex-direction: column;
}

.guest-row strong {
  font-size: 0.86rem;
}

.guest-row small,
.guest-limit {
  color: var(--nv-muted);
  font-size: 0.72rem;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.stepper button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--nv-border-strong);
  border-radius: 50%;
  color: var(--nv-ink);
  background: var(--nv-white);
  line-height: 1;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.stepper button:hover:not(:disabled) {
  border-color: var(--nv-forest);
  color: var(--nv-white);
  background: var(--nv-forest);
}

.stepper button:disabled {
  opacity: 0.35;
}

.stepper output {
  min-width: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.reserve-button {
  margin-top: 1rem;
}

.charge-note {
  margin: 0.65rem 0 0;
  color: var(--nv-muted);
  font-size: 0.72rem;
  text-align: center;
}

.price-breakdown {
  display: grid;
  gap: 0.62rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
}

.price-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.price-breakdown > div > span:last-child {
  text-align: right;
}

.price-total {
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--nv-border);
  font-size: 0.95rem;
}

.booking-trust {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 0.9rem;
  border-radius: var(--nv-radius-sm);
  color: var(--nv-forest-dark);
  background: var(--nv-sage);
  font-size: 0.7rem;
  line-height: 1.4;
}

.booking-trust i {
  flex: 0 0 auto;
  font-size: 1.05rem;
}

.booking-trust span {
  display: flex;
  flex-direction: column;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-score > span {
  font-family: var(--nv-font-display);
  font-size: 4.2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.review-score > div {
  display: flex;
  flex-direction: column;
}

.review-score small {
  color: var(--nv-muted);
  font-size: 0.72rem;
}

.stars {
  display: flex;
  gap: 0.12rem;
  color: var(--nv-terracotta);
  font-size: 0.68rem;
}

.rating-bars {
  display: grid;
  min-width: min(100%, 320px);
  gap: 0.35rem;
  font-size: 0.7rem;
}

.rating-bars > div {
  display: grid;
  grid-template-columns: 72px 1fr 24px;
  align-items: center;
  gap: 0.7rem;
}

.bar {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--nv-border);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--nv-ink);
}

.rating-width-96 {
  width: 96%;
}
.rating-width-99 {
  width: 99%;
}
.rating-width-100 {
  width: 100%;
}

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

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #56392f;
  background: #f2d8cb;
  font-size: 0.72rem;
  font-weight: 800;
}

.reviewer-avatar--green {
  color: #244a40;
  background: #cfe0d7;
}

.reviewer h4 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
}

.reviewer p,
.review-meta,
.review-card > p {
  color: var(--nv-muted);
  font-size: 0.75rem;
}

.reviewer p {
  margin: 0;
}

.review-meta {
  display: flex;
  gap: 0.6rem;
  margin: 0.9rem 0 0.45rem;
}

.review-meta span:first-child {
  color: var(--nv-ink);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.review-card > p {
  margin: 0;
  color: var(--nv-ink-soft);
  line-height: 1.65;
}

.location-map {
  position: relative;
  height: 330px;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
}

.location-map svg {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 51%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 50% 0;
  color: var(--nv-white);
  background: var(--nv-terracotta);
  box-shadow: var(--nv-shadow-md);
  transform: rotate(-45deg);
}

.map-pin i {
  transform: rotate(45deg);
}

.map-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--nv-border);
  box-shadow: var(--nv-shadow-sm);
  font-size: 0.8rem;
}

.good-to-know {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.good-to-know h4 {
  font-size: 0.88rem;
  font-weight: 800;
}

.good-to-know p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.trust-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: var(--nv-white);
  background: var(--nv-forest-dark);
}

.trust-heading {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.trust-heading h2 {
  margin: 0;
}

.trust-heading .eyebrow {
  margin-bottom: 0.2rem;
}

.brand-mini {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #f3c8b9;
  font-family: var(--nv-font-display);
  font-size: 2rem;
}

.trust-grid > div {
  padding-right: clamp(1rem, 4vw, 4rem);
}

.trust-grid i {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #f2bfae;
  font-size: 1.6rem;
}

.trust-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.newsletter-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--nv-sand);
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.newsletter-card h2 {
  max-width: 650px;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}

.newsletter-card p {
  margin: 0;
  color: var(--nv-muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  min-height: 54px;
  border-radius: 999px;
  padding-inline: 1.15rem;
  background: var(--nv-white);
}

.newsletter-form .btn {
  min-height: 54px;
}

.newsletter-form .invalid-feedback {
  grid-column: 1 / -1;
  padding-left: 1rem;
}

.site-footer {
  padding: clamp(4rem, 7vw, 6rem) 0 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  background: #111916;
}

.brand-mark--footer {
  color: var(--nv-white);
}

.brand-mark--footer:hover {
  color: #f2c9bc;
}

.footer-top > div:first-child p {
  max-width: 310px;
  margin: 1.15rem 0 1.3rem;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--nv-white);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--nv-white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--nv-white);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-control {
  min-height: 44px;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--nv-white);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-booking-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1025;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--nv-border);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 -12px 30px rgba(24, 35, 31, 0.1);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  transition: transform 180ms ease;
}

.mobile-booking-bar.is-visible {
  transform: translateY(0);
}

.mobile-booking-bar > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.25rem;
  font-size: 0.73rem;
}

.mobile-booking-bar strong {
  font-size: 0.98rem;
}

.mobile-booking-bar a {
  flex-basis: 100%;
  color: var(--nv-ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.mobile-booking-bar a i {
  color: var(--nv-terracotta);
}

.offcanvas,
.modal-content {
  color: var(--nv-ink);
  background: var(--nv-paper);
}

.btn-close {
  width: 1rem;
  height: 1rem;
  padding: 0.875rem;
  box-sizing: content-box;
}

.offcanvas-header,
.modal-header {
  padding: 1.25rem;
  border-bottom-color: var(--nv-border);
}

.offcanvas-title,
.modal-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-account-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 42px;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--nv-border);
  border-radius: 16px;
  background: var(--nv-sand);
}

.mobile-account-card > span:nth-child(2) {
  min-width: 0;
}

.mobile-account-card small,
.mobile-account-card strong,
.mobile-account-card > span:nth-child(2) > span {
  display: block;
}

.mobile-account-card small {
  color: var(--nv-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.mobile-account-card strong {
  font-size: 0.88rem;
}

.mobile-account-card > span:nth-child(2) > span {
  overflow: hidden;
  color: var(--nv-muted);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-account-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--nv-ink);
  text-decoration: none;
}

.mobile-account-card > a:hover {
  background: var(--nv-white);
}

.mobile-nav > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.7rem;
  border-radius: var(--nv-radius-sm);
  color: var(--nv-ink);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav > a:hover {
  background: var(--nv-sand);
}

.mobile-booking-offcanvas {
  height: min(90vh, 690px) !important;
  border-radius: 24px 24px 0 0;
}

.filter-body {
  padding: 0 1.5rem;
}

.filter-group {
  padding: 1.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--nv-border);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group legend {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 800;
}

.filter-group > p {
  margin-bottom: 1rem;
  color: var(--nv-muted);
  font-size: 0.78rem;
}

.filter-group label:not(.btn) {
  font-size: 0.8rem;
  font-weight: 700;
}

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

.filter-check-grid label {
  position: relative;
}

.filter-check-grid input {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 1;
}

.filter-check-grid label > span {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-sm);
}

.filter-check-grid label > input:checked + span {
  border-color: var(--nv-forest);
  box-shadow: inset 0 0 0 1px var(--nv-forest);
}

.filter-check-grid label:has(input:focus-visible) > span {
  border-color: var(--nv-forest);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.14);
}

.filter-check-grid label > input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.filter-check-grid i {
  font-size: 1.3rem;
}

.rating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rating-options .btn {
  min-width: 76px;
}

.btn-check:focus-visible + .btn {
  border-color: var(--nv-forest);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.14);
}

.btn-check:focus-visible {
  outline: 0;
}

.auth-consent:focus-within {
  border-color: var(--nv-forest);
  box-shadow: 0 0 0 0.2rem rgba(29, 79, 70, 0.14);
}

.auth-page .auth-consent .form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

.auth-page
  .auth-consent
  .form-check-input:is(.is-invalid, [aria-invalid="true"]):focus {
  border-color: var(--nv-danger);
}

.auth-consent:has(.form-check-input.is-invalid) {
  border-color: var(--nv-danger);
  box-shadow: 0 0 0 0.2rem rgba(166, 56, 45, 0.12);
}

.gallery-modal {
  color: var(--nv-white);
  background: #090d0b;
}

.gallery-modal .modal-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.gallery-modal .modal-body {
  display: grid;
  padding: 1rem 4rem;
  place-items: center;
}

.gallery-modal .carousel,
.gallery-modal .carousel-inner,
.gallery-modal .carousel-item {
  width: 100%;
  height: calc(100vh - 100px);
}

.gallery-modal .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amenities-list h3 {
  margin: 1.5rem 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.amenities-list h3:first-child {
  margin-top: 0;
}

.amenities-list p {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--nv-border);
  color: var(--nv-ink-soft);
  font-size: 0.82rem;
}

.amenities-list i {
  width: 24px;
  color: var(--nv-forest);
  font-size: 1.05rem;
}

.modal-review {
  padding: 1rem 0;
  border-bottom: 1px solid var(--nv-border);
}

.modal-review strong,
.modal-review span {
  display: block;
  font-size: 0.78rem;
}

.modal-review span {
  margin: 0.3rem 0;
  font-size: 0.6rem;
}

.modal-review p {
  margin: 0;
  color: var(--nv-ink-soft);
  font-size: 0.8rem;
}

.toast {
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-md);
  box-shadow: var(--nv-shadow-md);
}

.toast-header {
  border-radius: var(--nv-radius-md) var(--nv-radius-md) 0 0;
}

.toast-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--nv-white);
  background: var(--nv-forest);
  font-size: 0.75rem;
}

.image-fallback {
  object-fit: contain !important;
  padding: 18%;
  background: var(--nv-sand-deep);
}

@media (max-width: 1199.98px) {
  .property-grid.view-map .property-grid__item {
    width: 50%;
  }

  .gallery-desktop {
    min-height: 380px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header .navbar {
    min-height: 68px;
  }

  .hero-section {
    padding-top: 5rem;
    background-position: 64% center;
  }

  .search-panel {
    max-width: 720px;
  }

  .search-panel .row {
    gap: 0.1rem;
  }

  .search-submit {
    min-height: 54px;
  }

  .results-map {
    min-height: 560px;
  }

  .results-section--map .results-list-column {
    display: none;
  }

  .results-section--map .results-map-column {
    display: block !important;
  }

  .editorial-card {
    min-height: 0;
  }

  .editorial-card__content {
    min-height: 390px;
  }

  .booking-card {
    margin-top: 1rem;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .results-section--map .results-list-column {
    width: 58.33333333%;
  }

  .results-section--map .results-map-column {
    display: block !important;
  }

  .results-section--map .property-grid__item {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .hero-section {
    padding: 4.25rem 0 1.5rem;
  }

  .hero-copy {
    margin-bottom: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-proof {
    gap: 0.4rem 1.2rem;
  }

  .hero-proof span:not(:last-child)::after {
    right: -0.7rem;
  }

  .category-chip {
    min-height: 58px;
    padding-inline: 0.65rem;
  }

  .category-chip span {
    font-size: 0.75rem;
  }

  .section-heading h2,
  .property-header h2,
  .trust-heading h2 {
    font-size: 2.55rem;
  }

  .results-toolbar {
    width: 100%;
  }

  .toolbar-select {
    flex: 1 1 150px;
    min-width: 0;
  }

  .property-header {
    margin-bottom: 1rem;
  }

  .property-header .btn-quiet {
    padding-inline: 0;
  }

  .property-breadcrumb {
    display: none;
  }

  .property-subtitle > *:not(:last-child)::after {
    margin-left: 0.45rem;
  }

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

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

  .room-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    align-items: center;
  }

  .room-grid i {
    grid-row: 1 / 3;
    margin: 0;
  }

  .review-grid,
  .good-to-know {
    grid-template-columns: 1fr;
  }

  .review-grid {
    gap: 2rem;
  }

  .location-map {
    height: 270px;
  }

  .trust-heading {
    align-items: flex-start;
  }

  .brand-mini {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

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

  .newsletter-form .invalid-feedback {
    grid-column: auto;
  }

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

  .gallery-modal .modal-body {
    padding: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .brand-mark {
    font-size: 1.45rem;
  }

  .brand-mark__symbol {
    width: 30px;
    height: 30px;
  }

  .hero-section {
    background: #18352e;
  }

  .hero-background img {
    object-position: 62% center;
  }

  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(13, 32, 27, 0.78),
      rgba(13, 32, 27, 0.55)
    );
  }

  .search-panel {
    border-radius: var(--nv-radius-md);
  }

  .search-field {
    padding: 0.22rem;
  }

  .search-field input[type="date"] {
    min-width: 0;
    font-size: 0.78rem;
  }

  .date-range-control {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  }

  .date-range-control__field,
  .search-field .date-range-control__field {
    padding-inline: 0.55rem;
  }

  .date-range-control__connector i {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .hero-proof span {
    width: calc(50% - 0.7rem);
  }

  .hero-proof span::after {
    display: none;
  }

  .section-space {
    padding-block: 3.5rem;
  }

  .results-toolbar .view-toggle {
    order: 3;
  }

  .results-toolbar .toolbar-button {
    order: 2;
  }

  .results-toolbar .toolbar-select {
    order: 1;
    flex: 1;
  }

  .property-card__body {
    padding-inline: 0.1rem;
  }

  .editorial-card {
    margin-inline: -0.25rem;
  }

  .editorial-card__media {
    min-height: 280px;
  }

  .editorial-card__content {
    min-height: 350px;
  }

  .featured-section {
    padding-top: 3rem;
  }

  .detail-block {
    padding-block: 1.75rem;
  }

  .review-score > span {
    font-size: 3.5rem;
  }

  .rating-bars {
    width: 100%;
  }

  .location-map {
    margin-inline: -0.25rem;
    border-radius: var(--nv-radius-md);
  }

  .map-link {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .trust-heading {
    gap: 0.8rem;
  }

  .trust-heading h2 {
    font-size: 2.3rem;
  }

  .site-footer {
    padding-top: 3.5rem;
  }

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

  .mobile-booking-offcanvas .offcanvas-body {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .toast-container {
    right: 0 !important;
    left: 0 !important;
  }

  .toast {
    width: auto;
  }
}

@media (min-width: 1440px) {
  .container-xxl {
    max-width: 1400px;
  }

  .property-card__media {
    aspect-ratio: 1 / 0.78;
  }

  .hero-section {
    min-height: 690px;
    display: flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --nv-ink: #edf3ef;
    --nv-ink-soft: #c8d0cb;
    --nv-forest: #6eb3a2;
    --nv-forest-dark: #102a24;
    --nv-sage: #253c35;
    --nv-sand: #1b2420;
    --nv-sand-deep: #26302c;
    --nv-paper: #121815;
    --nv-white: #1d2521;
    --nv-border: #35413c;
    --nv-border-strong: #52605a;
    --nv-muted: #a5afa9;
    --bs-body-color: var(--nv-ink);
    --bs-body-bg: var(--nv-paper);
    --bs-tertiary-bg: #1b2420;
  }

  :root:not([data-theme="light"]) .site-header,
  :root:not([data-theme="light"]) .mobile-booking-bar {
    background: rgba(18, 24, 21, 0.94);
  }

  :root:not([data-theme="light"]) .brand-mark svg path:nth-child(2) {
    fill: #121815;
  }

  :root:not([data-theme="light"]) .property-badge--light,
  :root:not([data-theme="light"]) .gallery-all,
  :root:not([data-theme="light"]) .gallery-counter,
  :root:not([data-theme="light"]) .map-link {
    color: #18231f;
    background: #fff;
  }

  :root:not([data-theme="light"]) .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
  }
}

@media print {
  .site-header,
  .hero-section,
  .category-section,
  .discovery-section,
  .editorial-section,
  .trust-section,
  .newsletter-section,
  .site-footer,
  .mobile-booking-bar,
  .property-header .btn,
  .gallery-all {
    display: none !important;
  }

  .featured-section {
    padding: 0;
  }

  .booking-card {
    position: static !important;
    box-shadow: none;
  }
}
