@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap");

:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --text: #1f1c18;
  --muted: #6e655d;
  --accent: #E84C88;
  --accent-dark: #c83a73;
  --line: rgba(31, 28, 24, 0.12);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

html,
body {
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

input,
select,
button,
textarea {
  max-width: 100%;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  z-index: 99;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  min-height: 96px;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.logo {
  transition: transform 0.18s ease-out;
}

.site-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo:hover {
  transform: scale(1.05);
  box-shadow: none;
  background: transparent;
}

.logo:active {
  transform: scale(0.98);
  box-shadow: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav-menu a:not(.btn) {
  transition: transform 0.18s ease-out;
}

.nav-menu a:not(.btn):hover {
  transform: scale(1.05);
  box-shadow: none;
  background: transparent;
}

.nav-menu a:not(.btn):active {
  transform: scale(0.98);
  box-shadow: none;
}


.site-header .nav-menu a.active:not(.btn) {
  color: #e84c88;
  background: rgba(232, 76, 136, 0.12);
  border: 1px solid rgba(232, 76, 136, 0.45);
  border-radius: 999px;
  padding: 8px 12px;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: all 0.2s ease;
}

button,
a,
[role="button"],
.btn,
.listing-tile,
.card {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}

button:hover,
a:hover,
[role="button"]:hover,
.btn:hover,
.listing-tile:hover,
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

button:active,
a:active,
[role="button"]:active,
.btn:active,
.listing-tile:active,
.card:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.08s ease-in, box-shadow 0.08s ease-in;
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.listing-tile:focus-visible,
.card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #f5f5f5;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

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

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  border-color: var(--text);
}

.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.home-hero {
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: stretch;
}

.home-hero__media {
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(31, 28, 24, 0.3);
}

.hero-dot.is-active {
  background: var(--accent);
}

.trust-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
}

.hero-search {
  margin: 18px 0 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-search label {
  flex: 1 1 180px;
}

.hero-search select,
.hero-search input[type="date"] {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  font-family: inherit;
}

.hero-search .btn {
  height: 44px;
  padding: 0 18px;
}

.hero__content h1,
+h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.search-form {
  margin: 26px 0 10px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 76, 136, 0.15), 0 20px 40px rgba(0, 0, 0, 0.08);
}

.search-bar.success {
  border-color: rgba(232, 76, 136, 0.7);
  box-shadow: 0 0 0 4px rgba(232, 76, 136, 0.15), 0 20px 40px rgba(0, 0, 0, 0.08);
}

.search-field {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 6px 16px;
}

.search-field__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.chip-input {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  font-size: 0.85rem;
  white-space: nowrap;
}

.chip__remove {
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.search-field input {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: var(--text);
  min-width: 160px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown.open {
  display: grid;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-section {
  display: grid;
  gap: 6px;
}

.dropdown-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.dropdown-item {
  border: none;
  background: rgba(248, 245, 241, 0.8);
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item.active {
  background: rgba(0, 0, 0, 0.06);
}

.dropdown-item:focus-visible {
  outline: 2px solid rgba(232, 76, 136, 0.7);
  outline-offset: 2px;
}

.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

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

.media-card {
  background: linear-gradient(130deg, #f2f2f2, #e0e0e0);
  border-radius: var(--radius);
  min-height: 180px;
  box-shadow: var(--shadow);
}

.media-card--tall {
  min-height: 260px;
  background: linear-gradient(160deg, #e6e6e6, #cfcfcf);
}

.section {
  padding: 70px 20px;
}

.section__header {
  max-width: var(--max);
  margin: 0 auto 36px;
}

.section__header h2,
+h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 12px;
}

.section__header p {
  color: var(--muted);
  max-width: 620px;
}

.grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--listings {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.inventory-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.map-panel {
  grid-column: 1;
  position: sticky;
  top: 108px;
}

.map-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.map-panel__header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.map-toggle {
  display: none;
}

.map-panel__body {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.listings-map {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
}

.property-marker {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e12b7a;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.property-marker.is-active,
.property-marker.markerActive {
  transform: scale(1.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.map-surface {
  position: relative;
  min-height: 540px;
  background: linear-gradient(165deg, #f7f7f7 0%, #efefef 100%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 28, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 28, 24, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  border: 1px solid rgba(31, 28, 24, 0.16);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  padding: 8px 12px;
  white-space: nowrap;
  z-index: 2;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid rgba(31, 28, 24, 0.16);
  border-bottom: 1px solid rgba(31, 28, 24, 0.16);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.map-pin.is-active::after {
  background: var(--accent);
  border-color: var(--accent);
}

.list-panel {
  grid-column: 2 / span 2;
  overflow: visible;
}

.list-panel__head {
  margin-bottom: 12px;
}

.list-panel__eyebrow {
  font-size: 0.95rem;
  color: var(--muted);
}

.list-panel__count {
  font-size: 0.85rem;
  color: var(--muted);
}

.list-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

.listings-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 6px;
  overflow: visible;
}

.listing-tile {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: visible;
  display: grid;
  grid-template-rows: 180px 1fr;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  min-height: 260px;
}

.listing-cover {
  height: 160px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(140deg, #e3e3e3, #d5d5d5);
}

.listing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-tile__body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 10px;
  align-content: space-between;
  position: relative;
  z-index: 1;
}

.listings-rows .listing-tile {
  grid-template-columns: 1fr;
  grid-template-rows: 160px 1fr;
  min-height: 260px;
}

.listings-rows .listing-cover {
  height: 160px;
}

.listings-rows .listing-tile__body {
  align-content: space-between;
}

.listing-summary {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
}

.listing-price {
  color: var(--text);
  font-size: 0.86rem;
  margin-top: 4px;
  font-weight: 500;
}

.listing-tile.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 76, 136, 0.24), 0 16px 32px rgba(0, 0, 0, 0.08);
}

.property-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.property-card.is-selected {
  border: 2px solid #ff4f8b;
}

.property-page {
  padding: 40px 0 80px;
}

.property-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.property-gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  background: #f2f2f2;
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(17, 17, 17, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-main:hover .gallery-prev,
.gallery-main:hover .gallery-next {
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.thumb {
  flex: 0 0 auto;
  width: 112px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid transparent;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.thumb img,
.thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover {
  transform: scale(1.03);
}

.thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(232, 76, 136, 0.2);
}

.property-intro {
  margin-top: 24px;
}

.property-meta,
.property-rating {
  color: var(--muted);
  margin-top: 6px;
}

.property-section {
  margin-top: 32px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 12px;
}

.amenity-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 28, 24, 0.08);
  color: var(--text);
  font-size: 0.98rem;
}

.amenity-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenities-toggle {
  margin-top: 16px;
}

.map-placeholder {
  margin-top: 12px;
  height: 220px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f5f5f5;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.property-map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.description-toggle {
  margin-top: 8px;
  width: fit-content;
}

.property-right {
  position: relative;
}

.reserve-card {
  position: sticky;
  top: 100px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  color: var(--text);
}

.date-field {
  position: relative;
}

.date-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.date-popover.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.date-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.date-popover__actions {
  display: flex;
  gap: 8px;
}

.calendar-grid {
  display: grid;
  gap: 16px;
}

.calendar-month__title {
  font-weight: 600;
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day,
.calendar-blank {
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(31, 28, 24, 0.08);
  background: #fff;
  font-size: 0.85rem;
}

.calendar-day {
  cursor: pointer;
}

.calendar-day:hover {
  background: rgba(199, 155, 102, 0.12);
}

.modal__card--wide {
  max-width: 720px;
  max-height: 80vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acuity-embed {
  border: 0;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: block;
}

.modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.tile-location {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.listing-title-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-location {
  font-weight: 600;
}

.listing-property {
  color: #666;
  font-size: 14px;
}

.listing-separator {
  color: #999;
}

.amenities {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-row,
.listing-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-card__cta {
  position: relative;
  z-index: 2;
}

/* Keep listing CTA readable in every state and isolate it from generic link/card hover rules. */
.listing-card__cta .btn.btn--small,
.listing-card__cta a.btn.btn--small {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  opacity: 1;
  visibility: visible;
  mix-blend-mode: normal;
  filter: none;
  text-decoration: none;
}

.listing-card__cta .btn.btn--small:hover,
.listing-card__cta a.btn.btn--small:hover,
.listing-card__cta .btn.btn--small:active,
.listing-card__cta a.btn.btn--small:active,
.listing-card__cta .btn.btn--small:focus,
.listing-card__cta a.btn.btn--small:focus,
.listing-card__cta .btn.btn--small:focus-visible,
.listing-card__cta a.btn.btn--small:focus-visible,
.listing-card__cta .btn.btn--small:visited,
.listing-card__cta a.btn.btn--small:visited {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  opacity: 1;
  visibility: visible;
  mix-blend-mode: normal;
  filter: none;
}

.price {
  font-weight: 600;
}

.section__cta {
  max-width: var(--max);
  margin: 30px auto 0;
}

.home-featured-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-property-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.home-property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.listing-image-rotator {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.rotator-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity;
}

.rotator-img.is-active {
  opacity: 1;
}

.home-property-card__body {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.home-price {
  font-weight: 600;
}

.home-perks {
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 4px;
}

.home-card-cta {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.home-steps-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-step-card,
.home-office-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 8px;
}

.home-step-card p,
.home-office-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.home-why-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.home-why-list {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.home-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-collage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.home-offices-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.included-chips {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.included-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
}

.offer-cards-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.offer-card--best {
  border-color: rgba(232, 76, 136, 0.4);
  box-shadow: 0 0 0 2px rgba(232, 76, 136, 0.12), 0 16px 32px rgba(0, 0, 0, 0.08);
}

.offer-tag {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

.offer-price {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.offer-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 70px 20px 30px;
}

.page-hero__content {
  max-width: var(--max);
  margin: 0 auto;
}

.property-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.property-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.amenities-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.checkout-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section--tight {
  padding-top: 28px;
}

.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-left,
.contact-right {
  display: grid;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-highlights {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.contact-highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.office-list {
  display: grid;
  gap: 12px;
}

.office-card {
  border: 1px solid rgba(31, 28, 24, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.contact-map-card {
  padding-bottom: 16px;
}

.contact-map {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 28, 24, 0.08);
}

.office-marker {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.detail-list--stacked li {
  align-items: flex-start;
}

.contact-form {
  margin-top: 8px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(232, 76, 136, 0.35);
  outline-offset: 1px;
  border-color: var(--accent);
}

.contact-form__message {
  min-height: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form__message.is-success {
  color: #2d6a4f;
}

.scheduler-wrap {
  width: 100%;
  min-height: 0;
  height: 680px;
  max-height: 680px;
  border-radius: 16px;
  overflow: auto;
}

.scheduler-iframe {
  width: 100%;
  height: 680px;
  border: 0;
  display: block;
}

.book-tour-hero {
  max-width: 880px;
}

.book-tour-expect {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.book-tour-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: start;
}

.book-tour-grid {
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.book-tour-left,
.book-tour-right {
  margin: 0;
  padding: 0;
}

.book-tour-scheduler-card {
  position: sticky;
  top: 112px;
}

.booking-shell {
  max-width: 100%;
  position: relative;
  z-index: 10;
}

.booking-shell .booking-widget-root,
.booking-shell .appointment-widget,
.booking-shell .selected-office-card {
  max-height: none;
  overflow: visible;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.booking-shell h3,
.booking-shell h2 {
  margin: 8px 0 12px;
}

.book-tour-info {
  display: grid;
  gap: 20px;
}

.book-tour-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acuity-wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: static !important;
  transform: none !important;
}

.book-tour-grid .book-tour-scheduler-card {
  position: static !important;
  top: auto !important;
}

.acuity-wrap > * {
  margin-top: 0 !important;
}

.office-hours-card {
  margin-top: 0 !important;
}

.acuity-wrap iframe {
  display: block;
  margin-top: 0 !important;
}

:root {
  --ol-pink: #9b2d5b;
  --ol-pink-soft: rgba(155, 45, 91, 0.18);
  --ol-card-border: rgba(155, 45, 91, 0.35);
}

.ol-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.ol-card--pink {
  border: 1.5px solid var(--ol-card-border) !important;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.06),
    0 0 0 4px var(--ol-pink-soft) !important;
}

.ol-card--pink ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.ol-card--pink li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
}

.ol-card--pink li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ol-pink);
  position: absolute;
  left: 0;
  top: 0.55em;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(155, 45, 91, 0.12);
}

.ol-card--pink h3,
.ol-card--pink h4 {
  margin-top: 0;
}

.book-tour-list {
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding-left: 18px;
  font-size: 0.95rem;
}

.tour-office-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}

.tour-office-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  display: grid;
  gap: 6px;
  text-align: left;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.tour-office-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tour-office-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.tour-office-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 76, 136, 0.16);
}

.tour-office-card__cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.booking-shell .time-picker,
.booking-shell .calendar,
.booking-shell .appointment-times {
  position: relative;
  z-index: 5;
}

.booking-shell .time-dropdown,
.booking-shell .calendar-popover,
.booking-shell .picker-popover {
  position: absolute;
  z-index: 9999;
}

.booking-shell * {
  pointer-events: auto;
}

.tour-map {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 28, 24, 0.08);
}

.tour-consent {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.tour-consent input {
  width: 16px;
  height: 16px;
}

.tour-consent span {
  color: var(--text);
}

.office-marker.is-selected {
  transform: scale(1.25);
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(31, 28, 24, 0.08);
  padding-bottom: 8px;
}

.detail-list strong {
  color: var(--text);
}

.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(248, 245, 241, 0.8);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-error {
  margin-top: 10px;
  font-size: 14px;
  color: #b00020;
}

.field-error {
  border: 1px solid #dc2626 !important;
  background: rgba(220, 38, 38, 0.06) !important;
}

.field-error-message {
  margin-top: 6px;
  font-size: 12px;
  color: #dc2626;
}

.lead-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 240ms ease, opacity 240ms ease;
}

.lead-fields.is-open {
  max-height: 500px;
  opacity: 1;
}

.policy-ack {
  margin-top: 14px;
  font-size: 13px;
  color: #555;
}

.policy-ack a {
  text-decoration: underline;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.policy-ack input[type="checkbox"] {
  margin-top: 3px;
}

.policy-link-text {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
}

.policy-error {
  color: #dc2626;
}

.policy-error input[type="checkbox"] {
  outline: 2px solid #dc2626;
}

.legal-container {
  max-width: 760px;
  margin: 60px auto 100px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.legal-container h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.legal-container h2 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-container p {
  margin-bottom: 10px;
}

.legal-container ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

.legal-container li {
  margin-bottom: 6px;
}

.legal-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.modal.open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 9, 0.4);
  backdrop-filter: blur(6px);
}

.modal__card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  width: calc(100% - 32px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  z-index: 1;
}

.modal-summary {
  display: grid;
  gap: 4px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

.filters {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.filter-select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-size: 0.95rem;
  color: var(--text);
}

.site-footer {
  padding: 60px 20px 30px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

footer {
  padding: 60px 40px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.6;
}

footer .footer-container .footer-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: inherit;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 13px;
  text-align: center;
  opacity: 0.6;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-grid h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
}

.logo--footer {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  display: inline;
  margin-bottom: 0;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.6;
}

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

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer {
    padding: 40px 20px;
  }
}

.about-compare-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 12px;
}

.about-compare-card--highlight {
  border-color: rgba(232, 76, 136, 0.42);
  box-shadow: 0 0 0 2px rgba(232, 76, 136, 0.12), 0 18px 34px rgba(0, 0, 0, 0.08);
}

.about-badge {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
}

.about-compare-price {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-compare-list {
  list-style: none;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-compare-total {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.about-pro-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-pro-content {
  display: grid;
  gap: 12px;
}

.about-pro-media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
}

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

@media (max-width: 1024px) {
  .property-layout {
    gap: 24px;
  }

  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listings-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .property-layout {
    display: flex;
    flex-direction: column;
  }

  .property-left,
  .property-right {
    width: 100%;
  }

  .reserve-card {
    width: 100%;
    position: static;
    margin-top: 20px;
  }

  .reserve-card button {
    width: 100%;
  }

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

  .footer-grid,
  footer .footer-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .listings-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    right: 20px;
    top: 70px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

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

  .site-logo img {
    height: 56px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 260px;
  }

  .scheduler-wrap {
    min-height: 0;
    height: 760px;
    max-height: 760px;
  }

  .book-tour-layout {
    grid-template-columns: 1fr;
  }

  .book-tour-scheduler-card {
    position: static;
  }

  .tour-office-list {
    grid-template-columns: 1fr;
  }

  .tour-map {
    height: 260px;
  }

  .search-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    display: contents;
  }

  .hero-copy {
    order: 1;
  }

  .home-hero__media {
    order: 2;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .smart-search {
    order: 3;
    margin-top: 0;
    max-width: 100%;
  }

  .hero__cta {
    order: 4;
  }

  .trust-row {
    order: 5;
  }

  .hero-right::before {
    display: none;
  }

  .home-featured-grid,
  .home-steps-grid,
  .home-why-grid,
  .home-offices-grid,
  .about-compare-grid,
  .about-pro-grid {
    grid-template-columns: 1fr;
  }

  .home-strip {
    grid-template-columns: 1fr;
  }

  .hero-search label,
  .hero-search .btn {
    flex: 1 1 100%;
  }

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

  .home-property-card img,
  .home-collage img {
    height: 190px;
  }

  .listing-image-rotator {
    height: 190px;
  }

  .search-bar .btn {
    width: 100%;
  }

  .smart-search__bar {
    display: flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    overflow: hidden;
  }

  .smart-search__segment {
    min-width: 0;
    padding: 8px 10px;
  }

  .smart-search__label {
    display: none;
  }

  .smart-search__value {
    font-size: 12px;
  }

  .smart-search__cta {
    padding: 0;
  }

  .smart-search__button {
    padding: 10px 12px;
  }

  .inventory-layout {
    grid-template-columns: 1fr;
  }

  .map-panel {
    position: static;
    top: auto;
    grid-column: auto;
  }

  .map-toggle {
    display: inline-flex;
  }

  .map-panel__body[hidden] {
    display: none;
  }

  .map-surface {
    min-height: 320px;
  }

  .list-panel {
    grid-column: auto;
    overflow: visible;
    padding-right: 0;
  }

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

  .listings-rows .listing-tile {
    grid-template-columns: 1fr;
    grid-template-rows: 140px 1fr;
  }

  .listings-rows .listing-cover {
    height: 140px;
  }

  .property-layout {
    grid-template-columns: 1fr;
  }

  .gallery-prev,
  .gallery-next {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    opacity: 1;
  }

  .reserve-card {
    position: static;
  }

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

  .property-map {
    height: 220px;
  }
}

@media (max-width: 680px) {
  .offer-cards-grid {
    grid-template-columns: 1fr;
  }

  .listings-rows {
    grid-template-columns: 1fr;
  }

  .listings-rows .listing-tile {
    grid-template-rows: 120px 1fr;
  }

  .listings-rows .listing-cover {
    height: 120px;
  }
}

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

@media (max-width: 480px) {
  .reserve-card {
    padding: 18px;
  }

  .reserve-card h2 {
    font-size: 18px;
  }

  .reserve-card input,
  .reserve-card select {
    font-size: 16px;
  }
}

.listings-page .section {
  padding-top: 18px;
  padding-bottom: 20px;
}

.flatpickr-calendar {
  z-index: 99999 !important;
}

.flatpickr-day:hover {
  background: rgba(232, 76, 136, 0.15);
  border-color: rgba(232, 76, 136, 0.15);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

#moveInCalendar .flatpickr-calendar {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 12px;
}

#moveInCalendar .flatpickr-months {
  margin-bottom: 8px;
}

.reserve-card,
.card,
.page-container {
  overflow: visible;
}

.calendar-panel {
  position: fixed;
  z-index: 99999;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 12px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.calendar-open {
  opacity: 1;
  transform: translateY(0);
}

.calendar-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
}

.ol-chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
}

.ol-chatbot__fab {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
}

.ol-chatbot__panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 340px;
  max-width: calc(100vw - 24px);
  height: 500px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.ol-chatbot__panel.chat-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-container {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 220ms ease;
}

.chat-container.open {
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}

.chat-title {
  font-weight: 600;
  font-size: 14px;
}

.chat-status {
  font-size: 12px;
  color: #22c55e;
}

.chat-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
}

.ol-chatbot__messages {
  padding: 14px;
  overflow: auto;
  display: grid;
  gap: 8px;
  align-content: start;
}

.msg-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  animation: fadeUp 160ms ease;
}

.msg-row.user {
  justify-content: flex-end;
}

.msg-row.agent {
  align-items: flex-start;
}

.msg-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 0 0 24px;
}

.msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  display: block;
}

.msg-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
}

.ol-chatbot__msg {
  padding: 9px 11px;
  border-radius: 14px;
  max-width: 90%;
  font-size: 0.9rem;
}

.agent-bubble {
  background: #f3f4f6;
  color: #111;
}

.user-bubble {
  background: rgba(232, 76, 136, 0.16);
  color: #fff;
}

.ol-chatbot__msg--enter {
  opacity: 0;
  transform: translateY(6px);
  animation: ol-chatbot-in 150ms ease forwards;
}

@keyframes ol-chatbot-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.ol-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.chat-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.chat-chip {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 140ms ease, transform 140ms ease;
}

.chat-chip:hover {
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-1px);
}

.quick-chip {
  border-radius: 999px;
  padding: 6px 12px;
  background: #f5f5f5;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms ease;
}

.quick-chip:hover {
  background: #ececec;
  transform: translateY(-1px);
}

.ol-chatbot__chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  font-size: 0.8rem;
}

.ol-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 10px 12px;
}

.ol-chatbot__input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.9rem;
}

.ol-chatbot__send {
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  padding: 0 12px;
}

.ol-chatbot__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ol-chatbot__cta {
  font-size: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
}

@media (max-width: 640px) {
  .ol-chatbot {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .ol-chatbot__panel {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    height: 64vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ol-chatbot__panel,
  .rotator-img,
  .chat-chip {
    transition: none !important;
    animation: none !important;
  }
}

/* Chat v2 */
.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.chat-fab {
  border: none;
  border-radius: 999px;
  background: #007aff;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.35);
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.chat-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.chat-title {
  font-weight: 600;
  font-size: 14px;
}

.chat-status {
  font-size: 12px;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #777;
}

.chat-messages {
  padding: 12px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 4px;
}

.msg-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  animation: fadeUp 180ms ease-out;
}

.msg-row.user {
  justify-content: flex-end;
}

.msg-row.agent {
  align-items: flex-start;
}

.msg-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.msg-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.agent-bubble {
  background: #e9e9eb;
  color: #111;
}

.user-bubble {
  background: #007aff;
  color: #fff;
}

.message-in {
  opacity: 0;
  transform: translateY(6px);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.quick-chip {
  border-radius: 999px;
  padding: 6px 12px;
  background: #f5f5f5;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 150ms ease;
}

.quick-chip:hover {
  background: #ececec;
  transform: translateY(-1px);
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 12px;
}

.chat-input {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
}

.chat-send {
  border: none;
  border-radius: 999px;
  background: #007aff;
  color: #fff;
  padding: 0 14px;
  min-width: 64px;
}

.chat-send:disabled {
  opacity: 0.5;
}

.typing-bubble {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
  animation: typingDot 1s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

.chat-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-cta {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  background: #fff;
}

@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .6; }
  40% { transform: translateY(-3px); opacity: 1; }
}

@media (max-width: 640px) {
  .chat-widget { left: 12px; right: 12px; bottom: 12px; }
  .chat-panel { right: 12px; bottom: 12px; width: calc(100vw - 24px); height: 66vh; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-panel,
  .msg-row,
  .quick-chip,
  .typing-dot {
    transition: none !important;
    animation: none !important;
  }
}

html,
body {
  background-color: #ffffff !important;
}

.section,
.page-hero,
.about-co-living,
.about-co-living__image {
  background: transparent !important;
}

.about-co-living__image {
  padding: 0;
}

.about-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
  max-width: var(--max);
  margin: 0 auto;
  background: transparent;
}

.about-split-text {
  flex: 1;
}

.about-split-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  background: transparent;
}

.about-split-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 992px) {
  .about-split {
    flex-direction: column;
  }

  .about-split-image {
    justify-content: center;
  }
}

.page-about .section,
.page-about section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-about .about-hero,
.page-about .about-intro,
.page-about .page-hero {
  padding-bottom: 24px;
  margin-bottom: 24px;
  min-height: auto;
}

.page-about .about-hero + .section,
.page-about .about-intro + .section,
.page-about .page-hero + .section {
  margin-top: 0;
  padding-top: 24px;
}

.page-about .about-copy {
  line-height: 1.65;
}

.page-about .hl {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.22);
  font-weight: 600;
}

.page-about .about-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-about .pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

.page-about .about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  background: transparent;
}

.page-about .about-split-image {
  background: transparent;
}

@media (max-width: 992px) {
  .page-about .about-split {
    grid-template-columns: 1fr;
  }

  .page-about .about-split-image {
    justify-content: center;
  }
}

/* ABOUT: remove giant gap between hero and next section */
.page-about .about-hero,
.page-about .about-intro,
.page-about .hero,
.page-about .hero-section,
.page-about .page-hero {
  min-height: 0 !important;
  height: auto !important;
  padding-bottom: 24px !important;
  margin-bottom: 0 !important;
}

/* the section after hero should not start with big spacing */
.page-about .about-hero + section,
.page-about .about-intro + section,
.page-about .hero + section,
.page-about .hero-section + section,
.page-about .page-hero + section {
  margin-top: 0 !important;
  padding-top: 24px !important;
}

/* kill any “section spacing” utilities used globally */
.page-about section {
  margin-top: 0 !important;
}

/* if there is a main container pushing content down */
.page-about main {
  padding-top: 0 !important;
}

.page-about .about-hero {
  padding: 56px 0 24px !important;
}

.page-about .co-living-section,
.page-about #co-living,
.page-about .about-section {
  padding: 24px 0 56px !important;
}

/* FINAL: tighten About hero -> co-living spacing */
.page-about .about-hero,
.page-about .about-intro,
.page-about .hero,
.page-about .hero-section,
.page-about .page-hero {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 40px !important;
  padding-bottom: 8px !important;
  margin-bottom: 0 !important;
}

.page-about .about-hero + section,
.page-about .about-intro + section,
.page-about .hero + section,
.page-about .hero-section + section,
.page-about .page-hero + section,
.page-about #co-living,
.page-about .co-living,
.page-about .co-living-section,
.page-about section.what-is-coliving {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

.chat-avatar-wrap {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar,
.chat-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  flex: 0 0 auto;
}

.chat-avatar {
  object-fit: cover;
  display: block;
}

.chat-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: #e9e9ef;
  color: #444;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
}

.msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-message.bot {
  flex-direction: row;
}

.ai-search {
  margin-top: 18px;
  max-width: 620px;
}

.ai-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(30, 30, 30, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ai-pill::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.22), transparent 55%),
              radial-gradient(circle at 85% 40%, rgba(168, 85, 247, 0.18), transparent 55%);
  opacity: 0.65;
  filter: blur(10px);
  pointer-events: none;
}

.ai-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.12);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.ai-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.55);
  animation: aiPulse 1.6s infinite;
}

@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

.ai-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.ai-go {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: #ec4899;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.ai-go:hover {
  filter: brightness(0.96);
}

.ai-suggestions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ai-chip {
  border: 1px solid rgba(30, 30, 30, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.ai-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.ai-hints {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.ai-pill.ai-focused {
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.10);
}

.smart-search {
  margin-top: 18px;
  max-width: 760px;
  position: relative;
}

.smart-search__bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(30, 30, 30, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.smart-search.is-active .smart-search__bar {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  border-color: rgba(30, 30, 30, 0.2);
}

.smart-search__segment {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  display: grid;
  text-align: left;
  gap: 2px;
}

.smart-search__segment:hover {
  background: rgba(0, 0, 0, 0.04);
}

.smart-search__segment.is-active {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.smart-search__label {
  font-size: 11px;
  font-weight: 700;
}

.smart-search__value {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-search__divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 12px 0;
}

.smart-search__cta {
  padding: 8px;
  display: flex;
  align-items: center;
}

.smart-search__button {
  border: 0;
  border-radius: 999px;
  background: #ec4899;
  color: #fff;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.smart-search__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  z-index: 20;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.smart-search__panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.smart-search__panel-inner {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.12);
  padding: 14px;
}

.smart-search__where-input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.smart-search__suggestions {
  display: grid;
  gap: 6px;
}

.smart-search__suggestion {
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  align-items: center;
}

.smart-search__suggestion-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.smart-search__suggestion-copy {
  display: inline-flex;
  flex-direction: column;
}

.smart-search__suggestion:hover,
.smart-search__suggestion.is-active {
  background: rgba(0, 0, 0, 0.05);
}

.smart-search__suggestion.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.smart-search__suggestion-badge {
  font-size: 11px;
  color: #999;
  margin-left: auto;
}

.smart-search__suggestion-primary {
  font-size: 14px;
  font-weight: 600;
}

.smart-search__suggestion-secondary {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
}

.smart-search__dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.smart-search__date-input {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
}

.smart-search__guests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.smart-search__counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.smart-search__counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.24);
  background: #fff;
  font-size: 18px;
  line-height: 1;
}

.smart-search__counter-value {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.smart-search__hidden {
  display: none;
}

@media (max-width: 860px) {
  .smart-search__bar {
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: visible;
    padding: 6px;
  }

  .smart-search__divider {
    display: none;
  }

  .smart-search__cta {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-top: 2px;
  }

  .smart-search__panel {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .smart-search__bar {
    display: flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    overflow: hidden;
  }

  .smart-search__segment {
    min-width: 0;
    padding: 8px 10px;
    flex: 1 1 0;
  }

  .smart-search__label {
    display: none;
  }

  .smart-search__value {
    font-size: 12px;
  }

  .smart-search__cta {
    padding: 0;
    justify-content: flex-end;
  }

  .smart-search__button {
    padding: 10px 12px;
  }
}

.smart-search__hint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.smart-search__city-select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.smart-search__city-select option:disabled {
  color: rgba(0, 0, 0, 0.4);
}

.smart-search__coming {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.smart-search__dates--single {
  grid-template-columns: 1fr;
}

.smart-search__term {
  display: flex;
  align-items: center;
  gap: 10px;
}

.smart-search__term-pill {
  border: 1px solid rgba(236, 72, 153, 0.35);
  background: rgba(236, 72, 153, 0.12);
  color: #b4236d;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.smart-search__term-help {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
}

.smart-search__moveout {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.smart-search__moveout.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.smart-search__moveout .smart-search__date-input {
  background: rgba(0, 0, 0, 0.04);
}

.hiw {
  background: #fff;
  padding-bottom: 80px;
}

.hiw__header {
  max-width: var(--max);
  margin: 0 auto 28px;
}

.hiw__flow {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  position: relative;
}

.hiw__flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 56px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.hiw-step {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 22px 22px 18px;
  display: grid;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.hiw-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 90% 10%, rgba(178, 58, 104, 0.08), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hiw-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.step-card.is-featured {
  border-color: rgba(178, 58, 104, 0.24);
  box-shadow: 0 14px 34px rgba(178, 58, 104, 0.12), 0 10px 30px rgba(0, 0, 0, 0.07);
}

.hiw-step__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 58, 104, 0.22);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.hiw-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  color: #1f1c18;
  margin-top: 38px;
}

.hiw-step__icon::after {
  content: none;
}

.hiw-step__content {
  display: grid;
  gap: 10px;
}

.hiw-step__content h3 {
  font-size: 1.15rem;
}

.hiw-step__content p {
  color: var(--muted);
}

.how-step-image {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  margin-bottom: 14px;
}

.how-step-image.is-tall {
  height: 170px;
}

.how-step-image.is-tight {
  padding: 8px;
}

.how-card-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hiw-step__pricing {
  margin: 14px 0 10px;
}

.fee-highlight {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fee-pill {
  flex: 1 1 180px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 58, 104, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.fee-pill::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(178, 58, 104, 0.14), transparent 60%);
  animation: feeGlow 3.2s ease-in-out infinite;
  opacity: 0.9;
  pointer-events: none;
}

@keyframes feeGlow {
  0%, 100% { transform: translate3d(-2%, -2%, 0) scale(1); }
  50% { transform: translate3d(2%, 2%, 0) scale(1.02); }
}

.fee-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 4px;
  position: relative;
}

.fee-price {
  font-size: 22px;
  font-weight: 800;
  color: #1f1f1f;
  letter-spacing: -0.02em;
  position: relative;
}

.fee-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  position: relative;
}

.step-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.step-card li {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.78);
}

.step-card li::marker {
  color: rgba(178, 58, 104, 0.75);
}

@media (max-width: 768px) {
  .hiw__flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hiw__flow::before {
    left: 23px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
  }

  .hiw-step__icon::after { content: none; }

  .how-step-image {
    height: 120px;
  }

  .how-step-image.is-tall {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .how-step-image {
    height: 110px;
  }

  .how-step-image.is-tall {
    height: 125px;
  }
}

/* FORCE image area size + scaling (put at end of CSS so it overrides) */
.how-card-image {
  width: 100%;
  height: 220px;
  margin: 18px 0 14px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.how-card-image__img {
  width: 92% !important;
  height: 92% !important;
  object-fit: contain;
  object-position: center;
  display: block;
}

.how-card-image.agent {
  height: 260px;
}

.how-card-image.agent .how-card-image__img {
  width: 96% !important;
  height: 96% !important;
}

.hiw-final {
  --step3-center: 83.333%;
  max-width: var(--max);
  margin: 18px auto 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ec4899;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.07);
  padding: 18px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hiw-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-final.is-visible::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0) 0%, rgba(236, 72, 153, 0.75) 50%, rgba(236, 72, 153, 0) 100%);
  animation: hiwBorderShine 1s ease;
}

@keyframes hiwBorderShine {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hiw-final__connector {
  position: absolute;
  left: var(--step3-center);
  transform: translateX(-50%);
  top: -10px;
  width: 16px;
  height: 10px;
}

.hiw-final__connector::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #ffffff;
  filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.12));
}

.hiw-final__tag {
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #c73279;
  margin-bottom: 8px;
}

.hiw-final__title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hiw-final__desc {
  color: var(--muted);
  margin-bottom: 12px;
}

.hiw-final__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hiw-final__chip {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #f8f8f9;
  padding: 6px 10px;
  font-size: 12px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.hiw-final__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hiw-final {
    --step3-center: 50%;
    margin-top: 14px;
  }
}

/* How It Works spacing tighten */
.how-it-works .how-hero {
  padding: 50px 20px 28px;
}

.how-it-works .tour-section {
  padding: 0 20px 50px;
}

.how-it-works .steps-grid {
  margin-top: 0;
}

/* Chat avatar hard-fix */
.chat-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(120, 120, 120, 0.18);
  display: grid;
  place-items: center;
}

.chat-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.chat-header .chat-avatar {
  position: relative;
  z-index: 2;
}

.chat-avatar-fallback::after {
  content: attr(data-fallback);
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.msg-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: visible;
  background: transparent;
  border: 0;
}

/* About refresh */
.page-about {
  background: #fff;
}

.page-about .about-hero {
  padding-top: 48px !important;
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

.page-about .about-hero .lead {
  max-width: 760px;
}

.page-about .about-hero + .section {
  padding-top: 32px !important;
}

.page-about .cards {
  display: grid;
  gap: 14px;
}

.page-about .card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.page-about .stat-card {
  padding: 14px 16px;
}

.page-about .stat-card h3 {
  font-size: 1.4rem;
  line-height: 1.1;
}

.page-about .stat-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-about .about-stats {
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
}

.page-about .grid-2 {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.page-about .about-value-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-about .about-copy {
  color: var(--muted);
  margin-top: 10px;
}

.page-about .about-why .section__header {
  margin-bottom: 20px;
}

.page-about .about-why-cards {
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-about h2::after {
  display: none !important;
}

@media (max-width: 860px) {
  .page-about .about-stats,
  .page-about .grid-2,
  .page-about .about-value-cards,
  .page-about .about-why-cards {
    grid-template-columns: 1fr;
  }

  .page-about .about-hero .page-hero__content {
    text-align: center;
  }
}

/* About narrative + restored comparison */
.page-about .section {
  padding: 56px 0;
}

.page-about .about-story {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.page-about .about-story p {
  color: var(--muted);
}

.page-about .about-mobility-callout {
  max-width: var(--max);
  margin: 18px auto 0;
}

.page-about .about-mobility-callout h3 {
  margin-bottom: 6px;
}

.page-about .about-mobility-callout p {
  color: var(--muted);
  margin-bottom: 10px;
}

.page-about .about-mobility-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-about .about-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #f9f9fa;
  padding: 6px 10px;
  font-size: 12px;
}

.page-about .compare-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-about .compare-card h3 {
  margin-bottom: 8px;
}

.page-about .compare-card .checklist {
  margin-top: 4px;
}

@media (max-width: 860px) {
  .page-about .section {
    padding: 36px 0;
  }

  .page-about .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* About safe additive updates */
.about-page .highlight,
.about-page mark {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-weight: 600;
}

.about-page .about-hero {
  padding-bottom: 24px;
}

.about-page .about-hero + .about-section {
  margin-top: 24px;
}

.about-page .about-section {
  margin: 40px 0;
}

.about-page .about-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-page .about-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.about-page .about-card ul {
  margin-top: 8px;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .about-page .about-compare-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-section {
    margin: 28px 0;
  }
}

/* how-it-works card image size override: enlarge only card 1 and 2 */
.how-card-image{
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card-image.large{
  height: 260px;
}

.how-card-image.large img,
.how-card-image.large .how-card-image__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-card-image.agent{
  height: 180px;
}

/* how-it-works: tighten top spacing before card images */
.how-card,
.step-card,
.how-it-works-card {
  padding-top: 16px !important;
}

.how-card-image {
  margin-top: 8px !important;
}

.how-card .step-number,
.step-card .step-number,
.hiw-step__badge,
.hiw-step__icon {
  margin-bottom: 12px !important;
}

/* how-it-works: make all three card images large and dominant */
.how-card-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px 0 20px;
}

.how-card-image img,
.how-card-image .how-card-image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* how-it-works: hard override to make image itself fill area */
.how-card-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px 0 20px;
}

.how-card-image img,
.how-card-image .how-card-image__img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* how-it-works: cards 1-2 fill, card 3 (agent) no crop */
.how-card-image img,
.how-card-image .how-card-image__img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

/* Agent image should never crop */
.hiw-step:nth-child(3) .how-card-image img,
.hiw-step:nth-child(3) .how-card-image .how-card-image__img,
.how-card:nth-child(3) .how-card-image img {
  object-fit: contain !important;
}

.hiw-step:nth-child(3) .how-card-image,
.how-card:nth-child(3) .how-card-image {
  height: 260px;
}

/* how-it-works: remove top dead space in cards */
.how-card,
.step-card,
.how-it-works-card,
.hiw-step {
  padding-top: 16px !important;
  min-height: auto !important;
}

.how-card-image {
  margin-top: 0 !important;
}

.how-card .step-number,
.step-card .step-number,
.hiw-step__badge,
.hiw-step__icon {
  margin-bottom: 8px !important;
}

.hiw-step__icon {
  margin-top: 0 !important;
}

/* how-it-works alignment: equal-height cards and consistent image/title layout */
.how-it-works-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.how-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.how-card .image-wrapper {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card img,
.how-card .how-card-image__img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.how-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.how-card p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-box {
  margin-top: auto;
}

.price-box .price-item {
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* how-it-works final block spacing after removing badge */
.hiw-final__title {
  margin-top: 0;
}

/* chat avatar hard sizing + safe long message wrapping */
.chat-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #f2f2f2;
  display: grid;
  place-items: center;
}

.chat-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.chat-message,
.msg-bubble {
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
}

/* chat long-form bot replies keep line breaks */
.msg-bubble {
  white-space: pre-line;
}

/* chat button visibility upgrade */
.chat-fab.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d63384, #b0246b);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: fixed;
  z-index: 10001;
}

.chat-fab.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.chat-fab.chat-toggle .chat-icon {
  width: 18px;
  height: 18px;
}

.chat-fab.chat-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(214, 51, 132, 0.35);
  animation: chatFabPulse 2s infinite;
  z-index: -1;
}

@keyframes chatFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* chat polish: circular launcher + online glow + open animation */
.chat-fab.chat-toggle {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chat-fab.chat-toggle .chat-icon {
  width: 24px;
  height: 24px;
  color: #fff;
}

.chat-fab.chat-toggle::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.chat-panel.open {
  animation: chatSlideUp 0.3s ease;
}

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

/* hide floating launcher while panel is open */
.chat-fab.chat-toggle.hidden {
  display: none;
}

/* chat flow back control */
.chat-back {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  cursor: pointer;
  margin-right: 8px;
}

.chat-back[hidden] {
  display: none !important;
}

/* Chat embed mode (Acuity/Stripe inside chat) */
.chat-panel {
  grid-template-rows: auto 1fr auto;
}

.chat-content {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.chat-embed {
  position: absolute;
  inset: 0;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  z-index: 5;
}

.chat-embed[hidden] {
  display: none !important;
}

.chat-embed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-embed__title {
  font-size: 13px;
  font-weight: 600;
}

.chat-embed__close {
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #777;
}

.chat-embed__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chat-send {
  background: #b0246b;
}

.quick-chip {
  background: rgba(176, 36, 107, 0.06);
  border: 1px solid rgba(176, 36, 107, 0.18);
}

.quick-chip:hover {
  border-color: rgba(176, 36, 107, 0.42);
  background: rgba(176, 36, 107, 0.1);
}

.chat-fab.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .chat-panel {
    height: 74vh;
  }
}

/* chat open/panel mode cleanup */
body.chat-open .chat-toggle {
  display: none !important;
}

.chat-widget.panel-open .chat-content {
  grid-template-rows: 1fr;
}

.chat-widget.panel-open .chat-messages,
.chat-widget.panel-open .chat-quick {
  display: none !important;
}

/* panel header is title-only */
.chat-embed__head {
  justify-content: flex-start;
}

.chat-inline-date {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 8px;
}

.chat-inline-date__input {
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
}

.chat-inline-date__btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: #b0246b;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

/* chat header uses brand logo, message avatars stay agent face */
.chat-header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.chat-logo-header {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  display: block;
}

/* premium branded chat header */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ff2d7a, #ff4f94);
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-logo-header {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.chat-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.chat-status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: chatOnlinePulse 1.8s infinite;
}

@keyframes chatOnlinePulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
}

.chat-close:hover {
  opacity: 1;
}

/* Luxury chat polish */
:root {
  --on-pink: #ff2d7a;
  --on-pink-2: #ff4f94;
  --on-border: rgba(255, 255, 255, 0.35);
  --on-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  --on-shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.12);
  --on-glass: rgba(255, 255, 255, 0.78);
  --on-glass-2: rgba(255, 255, 255, 0.6);
  --on-text: #1b1b1b;
  --on-subtext: rgba(0, 0, 0, 0.55);
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}

.chat-panel {
  width: 380px;
  max-width: calc(100vw - 24px);
  border-radius: 16px;
  background: var(--on-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--on-shadow);
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.chat-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.chat-logo-header {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.chat-body {
  padding: 14px 14px 10px;
  max-height: 430px;
  overflow: auto;
}

.chat-body::-webkit-scrollbar {
  width: 10px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.msg-row {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  align-items: flex-end;
}

.msg-avatar,
.msg-avatar img,
.msg-avatar .chat-avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.msg-bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.35;
  font-size: 13.5px;
  color: var(--on-text);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.msg-row.agent .msg-bubble {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom-left-radius: 8px;
}

.msg-row.user {
  justify-content: flex-end;
}

.msg-row.user .msg-bubble {
  background: linear-gradient(135deg, var(--on-pink), var(--on-pink-2));
  color: #fff;
  border: 0;
  border-bottom-right-radius: 8px;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 12px 10px;
}

.quick-replies .quick-chip {
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12.5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.quick-replies .quick-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
  border-color: rgba(255, 45, 122, 0.35);
}

.chat-input {
  display: flex;
  gap: 10px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-text-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  font-size: 13.5px;
  outline: none;
}

.chat-text-input:focus {
  border-color: rgba(255, 45, 122, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 45, 122, 0.12);
}

.chat-input .send {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--on-pink), var(--on-pink-2));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(255, 45, 122, 0.22);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.chat-input .send:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(255, 45, 122, 0.28);
}

.typing-bubble {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 10px 12px;
}

.typing-bubble .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  animation: typing 1.2s infinite ease-in-out;
}

.typing-bubble .dot:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-3px); opacity: 0.9; }
}

.chat-launcher {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--on-pink), var(--on-pink-2));
  box-shadow: 0 18px 35px rgba(255, 45, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-widget.is-open .chat-launcher {
  display: none;
}

/* chat thinking indicator */
.typing-bubble {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 10px 12px;
}

.typing-bubble .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  animation: typingDot 1.15s infinite ease-in-out;
}

.typing-bubble .dot:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble .dot:nth-child(3) { animation-delay: 0.30s; }

@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 0.95; }
}

.section-note {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.75;
}

/* how-it-works: remove gray fill behind step numbers */
.step-number,
.card-number,
.hiw-step__badge {
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.step-number::before,
.card-number::before,
.hiw-step__badge::before {
  display: none !important;
}

/* flat step numbers: remove all shade */
.step-number,
.card-number,
.how-it-works .number,
.hiw-step__badge {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.step-number::before,
.step-number::after,
.hiw-step__badge::before,
.hiw-step__badge::after {
  display: none !important;
}

/* HOW IT WORKS - remove number circle glow/shade */
.how-it-works .step-number,
.how-it-works .step-number::before,
.how-it-works .step-number::after,
.how-it-works .step-badge,
.how-it-works .step-badge::before,
.how-it-works .step-badge::after,
.how-it-works [class*="step"][class*="number"],
.how-it-works [class*="step"][class*="badge"],
.how-it-works [class*="step"][class*="index"],
.how-it-works .hiw-step__badge,
.how-it-works .hiw-step__badge::before,
.how-it-works .hiw-step__badge::after {
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  background: transparent !important;
  opacity: 1 !important;
}

/* If the glow comes from a wrapper around the circle */
.how-it-works .step-card,
.how-it-works .step-card::before,
.how-it-works .step-card::after {
  filter: none !important;
  backdrop-filter: none !important;
}

/* In case a shadow is baked via background image */
.how-it-works .step-number,
.how-it-works .hiw-step__badge {
  background-image: none !important;
}

/* HOW IT WORKS - clean number circles */
.how-it-works .step-number,
.how-it-works .step-badge,
.how-it-works [class*="step"][class*="number"],
.how-it-works .hiw-step__badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* Remove pseudo glow layers if they exist */
.how-it-works .step-number::before,
.how-it-works .step-number::after,
.how-it-works .step-badge::before,
.how-it-works .step-badge::after,
.how-it-works .hiw-step__badge::before,
.how-it-works .hiw-step__badge::after {
  display: none !important;
}

/* HOW IT WORKS - pink number circles only */
.how-it-works .step-number,
.how-it-works .step-badge,
.how-it-works [class*="step"][class*="number"],
.how-it-works .hiw-step__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff2d7a !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  border: none !important;
}

/* Remove icons inside circles */
.how-it-works .step-number svg,
.how-it-works .step-number i,
.how-it-works .step-number img,
.how-it-works .step-badge svg,
.how-it-works .step-badge i,
.how-it-works .step-badge img,
.how-it-works .hiw-step__badge svg,
.how-it-works .hiw-step__badge i,
.how-it-works .hiw-step__badge img,
.how-it-works .hiw-step__icon {
  display: none !important;
}

/* Remove pseudo decorative elements */
.how-it-works .step-number::before,
.how-it-works .step-number::after,
.how-it-works .step-badge::before,
.how-it-works .step-badge::after,
.how-it-works .hiw-step__badge::before,
.how-it-works .hiw-step__badge::after {
  display: none !important;
}
