:root {
  --navy: #071d2f;
  --navy-soft: #12344a;
  --teal: #0e6264;
  --teal-bright: #167d7c;
  --gold: #dcae43;
  --ink: #142534;
  --muted: #71808a;
  --line: #e2e7e5;
  --cream: #f8f7f3;
  --white: #ffffff;
  --green-pale: #eaf5f0;
  --shadow: 0 20px 60px rgba(10, 34, 46, 0.09);
  --radius: 22px;
  --font-display: Georgia, "Times New Roman", serif;
}

@theme inline {
  --color-background: var(--cream);
  --color-foreground: var(--ink);
  --font-sans: Arial, Helvetica, sans-serif;
  --font-mono: monospace;
}

* {
  box-sizing: border-box;
}

/* Keep modal elements with the HTML hidden attribute truly hidden.
   This must override the display:flex rule used by .modal-backdrop. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  height: 78px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-pk {
  color: var(--gold);
  font-weight: 500;
}

.brand-mark {
  border: 1px solid rgba(220, 174, 67, 0.72);
  border-radius: 10px;
  display: inline-block;
  height: 30px;
  overflow: hidden;
  position: relative;
  width: 30px;
}

.brand-door {
  border: 1.5px solid var(--gold);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  bottom: 0;
  height: 19px;
  left: 7px;
  position: absolute;
  width: 12px;
}

.brand-path {
  border: 1.5px solid var(--gold);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 20px 0 0;
  bottom: -7px;
  height: 21px;
  position: absolute;
  right: 0;
  transform: rotate(-33deg);
  width: 18px;
}

.brand-dot {
  background: var(--gold);
  border-radius: 50%;
  height: 3px;
  left: 12px;
  position: absolute;
  top: 6px;
  width: 3px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  margin-left: auto;
  margin-right: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.desktop-nav button,
.currency-button,
.icon-button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav button:hover,
.currency-button:hover,
.icon-button:hover {
  color: var(--white);
}

.top-actions {
  align-items: center;
  display: flex;
  gap: 19px;
}

.currency-button {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.icon-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.sign-in-button {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.sign-in-button:hover {
  background: #f4dfaa;
  transform: translateY(-1px);
}

.menu-button {
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  padding: 4px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=88");
  background-position: center 48%;
  background-size: cover;
  color: var(--white);
  min-height: 620px;
  position: relative;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 24, 36, 0.9) 0%, rgba(4, 24, 36, 0.54) 45%, rgba(4, 24, 36, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 24, 36, 0.56), rgba(4, 24, 36, 0.02) 58%);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: 1320px;
  padding: 110px clamp(20px, 5vw, 76px) 72px;
  position: relative;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--gold);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 24px 0 24px;
  max-width: 780px;
}

.hero h1 em {
  color: #ead7a1;
  font-style: italic;
}

.hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

.search-panel {
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(4, 21, 29, 0.22);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 0.9fr auto;
  margin-top: 42px;
  max-width: 1120px;
  padding: 8px;
}

.search-field {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 10px 18px;
}

.field-icon {
  color: var(--teal);
  display: inline-flex;
  flex: 0 0 auto;
}

.search-field > span:last-child {
  display: block;
  min-width: 0;
  width: 100%;
}

.search-field small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.search-field input,
.search-field select {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 12px;
  max-width: 100%;
  outline: 0;
  padding: 0;
  width: 100%;
}

.search-field input::placeholder {
  color: #9ca8ac;
}

.search-field input[type="date"] {
  color-scheme: light;
}

.search-field select {
  appearance: none;
}

.search-submit,
.primary-button {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 11px;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding: 0 21px;
  transition: background 180ms ease, transform 180ms ease;
}

.search-submit:hover,
.primary-button:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}

.hero-credit {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.04em;
  position: absolute;
  right: clamp(20px, 5vw, 76px);
}

.hero-credit span {
  color: var(--gold);
  margin: 0 6px;
}

.content-wrap {
  margin: 0 auto;
  max-width: 1320px;
  padding: 92px clamp(20px, 5vw, 76px) 0;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading h2,
.trust-intro h2,
.host-banner h2,
.modal h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  font-size: clamp(30px, 3.3vw, 43px);
  margin: 11px 0 0;
}

.text-link {
  align-items: center;
  background: none;
  border: 0;
  color: var(--teal);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  padding: 8px 0;
}

.text-link:hover {
  color: var(--navy);
}

.category-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 29px;
  margin-bottom: 30px;
  overflow-x: auto;
}

.category-tab {
  align-items: center;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  gap: 9px;
  margin-bottom: -1px;
  padding: 0 0 16px;
  transition: color 180ms ease, border-color 180ms ease;
}

.category-tab:hover,
.category-tab.active {
  border-bottom-color: var(--teal);
  color: var(--teal);
}

.notice {
  align-items: center;
  background: var(--green-pale);
  border: 1px solid #d1e8dc;
  border-radius: 12px;
  color: #216352;
  display: flex;
  font-size: 12px;
  gap: 9px;
  margin: 0 0 22px;
  padding: 12px 14px;
}

.notice > button {
  background: transparent;
  border: 0;
  color: currentColor;
  display: inline-flex;
  margin-left: auto;
  padding: 3px;
}

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

.property-card {
  background: var(--white);
  border: 1px solid rgba(226, 231, 229, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 6px 25px rgba(16, 41, 49, 0.035);
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.property-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.image-button {
  background: #d6e0dc;
  border: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.property-image {
  background-position: center;
  background-size: cover;
  display: block;
  aspect-ratio: 1.32;
  transition: transform 450ms ease;
}

.image-button:hover .property-image {
  transform: scale(1.045);
}

.verified-badge {
  align-items: center;
  background: rgba(7, 29, 47, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 5px;
  left: 14px;
  letter-spacing: 0.04em;
  padding: 7px 9px;
  position: absolute;
  top: 14px;
}

.image-location {
  align-items: center;
  bottom: 15px;
  color: var(--white);
  display: inline-flex;
  font-size: 10px;
  gap: 5px;
  left: 15px;
  position: absolute;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.35);
}

.favorite-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 34px;
  z-index: 2;
}

.favorite-button:hover,
.favorite-button.saved {
  background: #f8e5b6;
  color: #ad6f20;
  transform: scale(1.06);
}

.property-body {
  padding: 19px 19px 17px;
}

.property-topline,
.property-footer,
.reserve-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.property-type,
.rating,
.property-details,
.property-footer span,
.modal-note {
  color: var(--muted);
  font-size: 10px;
}

.property-type {
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.rating > span,
.modal-rating > span {
  color: var(--gold);
}

.rating small {
  color: #99a4a6;
  font-size: 10px;
}

.property-title {
  background: none;
  border: 0;
  color: var(--navy);
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.045em;
  margin: 10px 0 7px;
  padding: 0;
  text-align: left;
}

.property-title:hover {
  color: var(--teal);
}

.property-details {
  margin: 0;
}

.property-footer {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
}

.property-footer strong,
.reserve-row strong {
  color: var(--navy);
  font-size: 14px;
}

.card-arrow {
  align-items: center;
  background: var(--green-pale);
  border: 0;
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  height: 31px;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  width: 31px;
}

.card-arrow:hover {
  background: #cfe8dc;
  transform: translateX(2px);
}

.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px 20px;
  text-align: center;
}

.empty-icon,
.modal-symbol {
  align-items: center;
  background: var(--green-pale);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.empty-state h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 17px 0 7px;
}

.empty-state p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 20px;
}

.secondary-button {
  background: var(--white);
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 17px;
}

.trust-strip {
  background: var(--navy);
  border-radius: 28px;
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  margin-top: 104px;
  padding: 44px 42px;
}

.trust-intro h2 {
  color: var(--white);
  font-size: 30px;
  line-height: 1.06;
  margin: 12px 0 12px;
}

.trust-intro p,
.trust-item span,
.host-banner p,
.footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

.trust-intro p {
  margin: 0;
  max-width: 270px;
}

.trust-item {
  align-items: flex-start;
  display: flex;
  gap: 13px;
  padding-top: 12px;
}

.trust-icon {
  align-items: center;
  background: rgba(220, 174, 67, 0.13);
  border-radius: 11px;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.trust-item strong {
  display: block;
  font-size: 12px;
  margin: 1px 0 6px;
}

.trust-item span:last-child {
  display: block;
}

.host-banner {
  align-items: center;
  background: #dcebe3;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  margin: 84px 0 92px;
  overflow: hidden;
  padding: 49px clamp(25px, 5vw, 66px);
  position: relative;
}

.host-banner::after {
  border: 1px solid rgba(14, 98, 100, 0.13);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: 16%;
  top: -175px;
  width: 280px;
}

.host-banner > div {
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.host-banner h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.03;
  margin: 11px 0 12px;
}

.host-banner p {
  color: #57736e;
  margin: 0;
  max-width: 465px;
}

.light-button {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  padding: 15px 19px;
  position: relative;
  z-index: 1;
}

.light-button:hover {
  background: var(--teal);
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 54px clamp(20px, 5vw, 76px) 24px;
}

.footer-main {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1168px;
}

.footer-brand {
  font-size: 20px;
}

.footer p {
  margin: 17px 0 0;
}

.footer-links {
  display: grid;
  gap: clamp(35px, 7vw, 100px);
  grid-template-columns: repeat(3, 1fr);
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 110px;
}

.footer-links strong {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  padding: 0;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 1168px;
  padding-top: 20px;
}

.modal-backdrop {
  align-items: center;
  background: rgba(3, 16, 25, 0.73);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 16px;
  position: fixed;
  z-index: 100;
}

.modal {
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 32px);
  overflow: auto;
  position: relative;
  width: min(920px, 100%);
}

.modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  z-index: 2;
}

.modal-close:hover {
  background: #f4dfaa;
}

.reservation-modal {
  display: grid;
  grid-template-columns: 42% 58%;
}

.modal-image {
  background-color: #d6e0dc;
  background-position: center;
  background-size: cover;
  min-height: 480px;
  position: relative;
}

.modal-image .verified-badge {
  bottom: 16px;
  top: auto;
}

.modal-content {
  padding: 54px 42px 36px;
}

.modal-content h2,
.small-modal h2 {
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.02;
  margin: 12px 0 10px;
}

.modal-rating {
  color: var(--navy);
  font-size: 12px;
}

.modal-rating small {
  color: var(--muted);
  font-size: 10px;
  margin-left: 4px;
}

.modal-content > p,
.small-modal > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 25px 0;
}

.amenities {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  padding: 16px 0;
}

.amenities span {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 11px;
  gap: 6px;
}

.reserve-row {
  margin-top: 26px;
}

.reserve-row > div span {
  color: var(--muted);
  font-size: 10px;
}

.primary-button {
  min-height: 45px;
  padding: 0 17px;
}

.modal-note {
  display: block;
  line-height: 1.5;
  margin-top: 17px;
}

.small-modal {
  padding: 47px 40px 34px;
  width: min(460px, 100%);
}

.small-modal .modal-symbol {
  margin-bottom: 23px;
}

.small-modal .host-symbol {
  background: #f7ecd1;
  color: #ad7725;
}

.small-modal > p {
  margin: 15px 0 22px;
}

.modal-input {
  display: block;
  margin-top: 14px;
}

.modal-input span {
  color: var(--navy);
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 7px;
}

.modal-input input {
  background: #fafbf9;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 12px;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.modal-input input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 98, 100, 0.1);
}

.full-button {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
    margin-right: 22px;
  }

  .search-panel {
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  }

  .search-submit {
    grid-column: 1 / -1;
    min-height: 47px;
    margin-top: 3px;
  }

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

  .trust-item:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .topbar {
    height: 70px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a,
  .desktop-nav button,
  .currency-button,
  .icon-button {
    font-size: 11px;
  }

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

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

  .trust-intro {
    grid-column: 1 / -1;
  }

  .trust-item:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 0 20px;
  }

  .desktop-nav {
    background: var(--navy-soft);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 16px;
    margin: 0;
    padding: 8px 16px;
    position: absolute;
    right: 16px;
    top: 62px;
  }

  .desktop-nav.mobile-open {
    display: flex;
  }

  .desktop-nav a,
  .desktop-nav button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    text-align: left;
    width: 100%;
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }

  .top-actions {
    gap: 12px;
  }

  .desktop-only,
  .currency-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 76px 20px 42px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
    margin-top: 21px;
  }

  .hero p {
    font-size: 13px;
    max-width: 360px;
  }

  .search-panel {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    padding: 7px;
  }

  .search-field {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 13px 12px;
  }

  .search-field:last-of-type {
    border-bottom: 0;
  }

  .search-submit {
    margin-top: 5px;
    min-height: 48px;
  }

  .hero-credit {
    bottom: 18px;
    font-size: 9px;
    left: 20px;
    right: auto;
  }

  .content-wrap {
    padding-top: 67px;
  }

  .section-heading {
    align-items: start;
    gap: 17px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .text-link {
    padding-top: 5px;
  }

  .category-tabs {
    gap: 22px;
  }

  .property-grid {
    gap: 15px;
  }

  .property-body {
    padding: 15px 14px 14px;
  }

  .property-title {
    font-size: 19px;
  }

  .property-topline {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .trust-strip {
    border-radius: 21px;
    gap: 25px 18px;
    grid-template-columns: 1fr 1fr;
    margin-top: 72px;
    padding: 31px 22px;
  }

  .trust-intro h2 {
    font-size: 27px;
  }

  .trust-item {
    display: block;
  }

  .trust-item > div {
    margin-top: 11px;
  }

  .host-banner {
    align-items: start;
    border-radius: 21px;
    flex-direction: column;
    gap: 27px;
    margin: 60px 0 68px;
    padding: 33px 23px;
  }

  .host-banner h2 {
    font-size: 31px;
  }

  .footer {
    padding: 43px 20px 21px;
  }

  .footer-main {
    display: block;
  }

  .footer-links {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .footer-links div {
    min-width: 0;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
    margin-top: 39px;
  }

  .reservation-modal {
    display: block;
  }

  .modal-image {
    min-height: 230px;
  }

  .modal-content {
    padding: 32px 22px 25px;
  }

  .modal-content h2,
  .small-modal h2 {
    font-size: 34px;
  }

  .reserve-row {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .reserve-row .primary-button {
    width: 100%;
  }

  .small-modal {
    padding: 37px 23px 27px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 18px;
  }

  .brand-mark {
    height: 27px;
    width: 27px;
  }

  .brand-door {
    height: 17px;
    left: 6px;
    width: 11px;
  }

  .brand-dot {
    left: 10px;
    top: 5px;
  }

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

  .property-image {
    aspect-ratio: 1.5;
  }

  .trust-strip {
    display: block;
  }

  .trust-item {
    display: flex;
    margin-top: 24px;
  }

  .trust-item > div {
    margin-top: 0;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a,
  .footer-links button {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.booking-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form-grid .modal-input {
  margin-top: 0;
}

.payment-note {
  align-items: center;
  background: var(--green-pale);
  border-radius: 9px;
  color: #276856;
  display: inline-flex;
  font-size: 10px;
  gap: 6px;
  margin: 15px 0 2px;
  padding: 9px 11px;
}

.modal-input select {
  appearance: none;
  background: #fafbf9;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 12px;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

.modal-input select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 98, 100, 0.1);
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.admin-shell {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
}

.admin-topbar {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 76px);
}

.admin-brand {
  color: var(--white);
}

.admin-top-actions {
  align-items: center;
  display: flex;
  gap: 22px;
}

.admin-user {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.admin-back {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  gap: 8px;
  padding: 10px 14px;
}

.admin-back:hover {
  background: rgba(255, 255, 255, 0.1);
}

.admin-loading {
  color: var(--muted);
  padding: 100px 20px;
  text-align: center;
}

.admin-content {
  margin: 0 auto;
  max-width: 1260px;
  padding: 69px clamp(20px, 5vw, 76px) 80px;
}

.admin-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.admin-heading h1,
.admin-gate h1 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 14px 0 13px;
}

.admin-heading p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.admin-mode {
  align-items: center;
  background: var(--green-pale);
  border-radius: 999px;
  color: #276856;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
  padding: 10px 13px;
}

.admin-mode span {
  background: #45a274;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.admin-alert {
  align-items: center;
  background: var(--green-pale);
  border: 1px solid #d1e8dc;
  border-radius: 12px;
  color: #216352;
  display: flex;
  font-size: 12px;
  gap: 9px;
  margin: -11px 0 22px;
  padding: 12px 14px;
}

.admin-alert button {
  background: transparent;
  border: 0;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
  margin-left: auto;
}

.admin-metrics {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 25px;
}

.admin-metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.admin-metric.highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.metric-label,
.admin-metric small {
  color: var(--muted);
  display: block;
  font-size: 10px;
}

.admin-metric.highlight .metric-label,
.admin-metric.highlight small {
  color: rgba(255, 255, 255, 0.56);
}

.admin-metric strong {
  color: var(--navy);
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 10px 0 4px;
}

.admin-metric.highlight strong {
  color: var(--gold);
}

.admin-two-column {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 25px;
}

.admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 21px;
  min-width: 0;
  padding: 25px;
}

.admin-wide-card {
  margin-bottom: 25px;
}

.admin-card-heading {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-card-heading h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 9px 0 0;
}

.admin-card-count {
  background: #f3f6f3;
  border-radius: 999px;
  color: var(--teal);
  font-size: 10px;
  padding: 8px 10px;
}

.admin-property-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.admin-property-form label,
.admin-form-row label {
  display: block;
}

.admin-property-form label > span,
.admin-form-row label > span {
  color: var(--navy);
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-property-form input,
.admin-property-form select,
.admin-property-form textarea {
  background: #fafbf9;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  font-size: 11px;
  outline: 0;
  padding: 11px 12px;
  resize: vertical;
  width: 100%;
}

.admin-property-form input:focus,
.admin-property-form select:focus,
.admin-property-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 98, 100, 0.1);
}

.admin-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.admin-list {
  max-height: 450px;
  overflow: auto;
}

.admin-list-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 34px 1fr auto;
  padding: 14px 0;
}

.admin-list-icon {
  align-items: center;
  background: var(--green-pale);
  border-radius: 9px;
  color: var(--teal);
  display: inline-flex;
  font-size: 17px;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.admin-list-row strong,
.admin-list-row span,
.admin-table td strong,
.admin-table td span {
  display: block;
}

.admin-list-row strong,
.admin-table td strong {
  color: var(--navy);
  font-size: 11px;
  margin-bottom: 5px;
}

.admin-list-row div > span,
.admin-table td span {
  color: var(--muted);
  font-size: 10px;
}

.status-pill {
  background: #f0f3f0;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex !important;
  font-size: 9px !important;
  font-weight: 700;
  padding: 6px 8px;
  text-transform: capitalize;
}

.status-pill.approved {
  background: var(--green-pale);
  color: #276856;
}

.status-pill.requested,
.status-pill.new {
  background: #f7ecd1;
  color: #a36d20;
}

.status-pill.declined {
  background: #fae6e3;
  color: #a44940;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.admin-table th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 11px 12px;
  text-align: left;
  text-transform: uppercase;
}

.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 11px;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.table-actions {
  display: flex;
  gap: 6px;
}

.table-actions button {
  background: var(--teal);
  border: 0;
  border-radius: 7px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 8px 9px;
}

.table-actions button.decline {
  background: #f4ebe9;
  color: #a44940;
}

.admin-empty {
  background: #fafbf9;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  padding: 23px;
  text-align: center;
}

.admin-gate {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 510px;
  padding: 16vh 20px;
  text-align: center;
}

.admin-gate h1 {
  font-size: clamp(37px, 5vw, 54px);
  margin-top: 24px;
}

.admin-gate p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.admin-gate-button {
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.admin-text-link {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  margin-top: 19px;
}

/* Premium motion layer -------------------------------------------------- */
@keyframes roomlane-page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes roomlane-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes roomlane-card-in {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes roomlane-glow {
  0% { transform: translate3d(-5%, -2%, 0) scale(0.98); opacity: 0.38; }
  50% { transform: translate3d(4%, 3%, 0) scale(1.05); opacity: 0.62; }
  100% { transform: translate3d(-1%, 6%, 0) scale(1.01); opacity: 0.42; }
}

@keyframes roomlane-shimmer {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(130%); }
}

@keyframes roomlane-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes roomlane-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 174, 67, 0); }
  50% { box-shadow: 0 0 0 6px rgba(220, 174, 67, 0.12); }
}

@keyframes roomlane-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes roomlane-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body {
  animation: roomlane-page-in 700ms ease both;
}

.topbar {
  background: rgba(7, 29, 47, 0.93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.topbar::after {
  background: linear-gradient(90deg, transparent, rgba(220, 174, 67, 0.55), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 8%;
  opacity: 0.55;
  position: absolute;
  right: 8%;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
}

.desktop-nav a::after,
.desktop-nav button::after {
  background: var(--gold);
  bottom: 1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  background:
    radial-gradient(circle at 72% 25%, rgba(45, 212, 191, 0.28), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(108, 124, 247, 0.23), transparent 25%);
  content: "";
  inset: -18%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  animation: roomlane-glow 13s ease-in-out infinite;
}

.hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, black 48%, transparent);
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-overlay,
.hero-content,
.hero-credit {
  z-index: 1;
}

.hero-content > * {
  animation: roomlane-rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > .hero h1,
.hero-content h1 {
  animation-delay: 100ms;
}

.hero-content > p {
  animation-delay: 180ms;
}

.hero-content > .search-panel {
  animation-delay: 280ms;
}

.eyebrow-dot {
  animation: roomlane-pulse 2.2s ease-in-out infinite;
}

.search-panel {
  overflow: hidden;
  position: relative;
}

.search-panel::after,
.primary-button::after,
.search-submit::after,
.light-button::after {
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.28) 48%, transparent 72%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
}

.search-panel::after {
  animation: roomlane-shimmer 6s ease-in-out infinite;
}

.search-submit,
.primary-button,
.light-button {
  overflow: hidden;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.search-submit:hover,
.primary-button:hover,
.light-button:hover {
  box-shadow: 0 12px 28px rgba(14, 98, 100, 0.24);
  transform: translateY(-3px);
}

.property-card {
  animation: roomlane-card-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: box-shadow 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1), border-color 350ms ease;
}

.property-card:nth-child(1) { animation-delay: 120ms; }
.property-card:nth-child(2) { animation-delay: 190ms; }
.property-card:nth-child(3) { animation-delay: 260ms; }
.property-card:nth-child(4) { animation-delay: 330ms; }
.property-card:nth-child(5) { animation-delay: 400ms; }
.property-card:nth-child(6) { animation-delay: 470ms; }

.property-card:hover {
  border-color: rgba(14, 98, 100, 0.28);
  box-shadow: 0 22px 55px rgba(10, 34, 46, 0.14);
  transform: translateY(-9px);
}

.property-card:hover .property-title {
  color: var(--teal);
}

.property-image {
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.image-button:hover .property-image {
  filter: saturate(1.08);
  transform: scale(1.09);
}

.verified-badge {
  animation: roomlane-float 4s ease-in-out infinite;
}

.favorite-button,
.card-arrow {
  transition: background 220ms ease, color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.favorite-button:hover,
.card-arrow:hover {
  box-shadow: 0 8px 18px rgba(10, 34, 46, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip,
.host-banner {
  isolation: isolate;
  overflow: hidden;
}

.trust-strip::before {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 63%);
  content: "";
  height: 360px;
  left: -100px;
  pointer-events: none;
  position: absolute;
  top: -190px;
  width: 360px;
  z-index: -1;
  animation: roomlane-glow 11s ease-in-out infinite reverse;
}

.trust-strip {
  position: relative;
}

.trust-item {
  transition: transform 280ms ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item:hover .trust-icon {
  background: rgba(220, 174, 67, 0.23);
  transform: rotate(-5deg) scale(1.08);
}

.trust-icon {
  transition: background 260ms ease, transform 260ms ease;
}

.host-banner::before {
  border: 1px solid rgba(14, 98, 100, 0.12);
  border-radius: 50%;
  content: "";
  height: 440px;
  position: absolute;
  right: -90px;
  top: -235px;
  width: 440px;
  animation: roomlane-float 8s ease-in-out infinite;
}

.modal-backdrop:not([hidden]) {
  animation: roomlane-backdrop-in 220ms ease both;
}

.modal-backdrop:not([hidden]) > .modal {
  animation: roomlane-modal-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-close {
  transition: background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.notice:not([hidden]) {
  animation: roomlane-rise 430ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .admin-topbar {
    min-height: 70px;
    padding: 0 20px;
  }

  .admin-top-actions {
    gap: 10px;
  }

  .admin-user {
    display: none;
  }

  .admin-back {
    font-size: 10px;
    padding: 9px 10px;
  }

  .admin-content {
    padding-top: 48px;
  }

  .admin-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .admin-heading h1 {
    font-size: 43px;
  }

  .admin-metrics {
    gap: 10px;
  }

  .admin-metric {
    padding: 15px;
  }

  .admin-metric strong {
    font-size: 30px;
  }

  .admin-card {
    border-radius: 17px;
    padding: 18px;
  }

  .admin-form-row,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-grid .modal-input {
    margin-top: 14px;
  }

  .booking-form-grid .modal-input:first-child {
    margin-top: 0;
  }
}

/* Modern type + 2D/3D hero graphics ----------------------------------- */
body {
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

.brand,
.desktop-nav,
.desktop-nav a,
.desktop-nav button,
.currency-button,
.icon-button,
.sign-in-button,
.menu-button {
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.desktop-nav a,
.desktop-nav button,
.currency-button,
.icon-button {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.sign-in-button {
  font-size: 11px;
  letter-spacing: 0.01em;
}

.motion-scene {
  height: 440px;
  pointer-events: none;
  perspective: 1200px;
  position: absolute;
  right: clamp(18px, 7vw, 112px);
  top: 112px;
  transform: translate3d(var(--scene-tx, 0px), var(--scene-ty, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(43vw, 560px);
  z-index: 1;
}

.motion-scene::before {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.3), transparent 67%);
  content: "";
  filter: blur(16px);
  height: 310px;
  position: absolute;
  right: 4%;
  top: 12%;
  width: 310px;
}

.motion-glass-card {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 24px 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--white);
  position: absolute;
  transform-style: preserve-3d;
}

.motion-card-main {
  border-radius: 25px;
  min-height: 268px;
  padding: 24px;
  right: 7%;
  top: 76px;
  transform: rotateX(10deg) rotateY(-18deg) rotateZ(-5deg);
  width: min(330px, 72%);
  animation: roomlane-3d-card-float 7s ease-in-out infinite;
}

.motion-card-main::before {
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  animation: roomlane-card-sheen 6s ease-in-out infinite;
}

.motion-card-top,
.motion-route {
  align-items: center;
  display: flex;
}

.motion-card-top {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 8px;
  gap: 7px;
  letter-spacing: 0.16em;
}

.motion-card-menu {
  color: rgba(255, 255, 255, 0.42);
  margin-left: auto;
  letter-spacing: 0.15em;
}

.motion-status-dot {
  background: #62e3c7;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(98, 227, 199, 0.12), 0 0 16px rgba(98, 227, 199, 0.8);
  height: 6px;
  width: 6px;
}

.motion-card-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.07em;
  line-height: 0.96;
  margin-top: 58px;
}

.motion-card-heading em {
  color: #ead7a1;
  font-style: italic;
}

.motion-route {
  background: rgba(4, 24, 36, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  bottom: 20px;
  gap: 10px;
  left: 20px;
  padding: 10px 11px;
  position: absolute;
  right: 20px;
}

.motion-route-icon {
  align-items: center;
  background: rgba(220, 174, 67, 0.18);
  border-radius: 9px;
  color: var(--gold);
  display: inline-flex;
  font-size: 16px;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.motion-route small,
.motion-route strong {
  display: block;
}

.motion-route small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  margin-bottom: 4px;
}

.motion-route strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.motion-route-arrow {
  color: #62e3c7;
  font-size: 18px;
  margin-left: auto;
}

.motion-orbit {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  position: absolute;
  transform-style: preserve-3d;
}

.motion-orbit-one {
  height: 270px;
  right: 8%;
  top: 74px;
  transform: rotate(-28deg) rotateX(68deg);
  width: 430px;
  animation: roomlane-orbit-one 14s linear infinite;
}

.motion-orbit-two {
  border-color: rgba(45, 212, 191, 0.35);
  height: 340px;
  right: 1%;
  top: 40px;
  transform: rotate(52deg) rotateX(67deg);
  width: 480px;
  animation: roomlane-orbit-two 19s linear infinite reverse;
}

.motion-orbit-dot {
  background: #62e3c7;
  border: 4px solid rgba(98, 227, 199, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(98, 227, 199, 0.9);
  height: 12px;
  position: absolute;
  right: 12%;
  top: 4%;
  width: 12px;
}

.motion-orb {
  border-radius: 50%;
  filter: blur(0.2px);
  position: absolute;
}

.motion-orb-one {
  background: radial-gradient(circle at 32% 26%, #b3fff0, #32aeaa 36%, #124e65 72%, transparent 73%);
  height: 64px;
  right: 1%;
  top: 48px;
  width: 64px;
  animation: roomlane-orb-float 5.5s ease-in-out infinite;
}

.motion-orb-two {
  background: radial-gradient(circle at 35% 30%, #fff1bd, #c78e30 38%, #75451e 72%, transparent 73%);
  bottom: 40px;
  height: 30px;
  left: 6%;
  width: 30px;
  animation: roomlane-orb-float 4.5s ease-in-out infinite reverse;
}

.motion-ring {
  border: 1px solid rgba(220, 174, 67, 0.42);
  border-radius: 50%;
  height: 92px;
  position: absolute;
  right: 13%;
  top: 21px;
  width: 92px;
  animation: roomlane-ring-spin 8s linear infinite;
}

.motion-ring::after {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(220, 174, 67, 0.8);
  content: "";
  height: 5px;
  left: 9px;
  position: absolute;
  top: 11px;
  width: 5px;
}

.motion-chip {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(7, 29, 47, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  padding: 10px 13px;
  position: absolute;
  white-space: nowrap;
}

.motion-chip span {
  color: var(--gold);
  margin-right: 5px;
}

.motion-chip-one {
  left: 6%;
  top: 34px;
  animation: roomlane-chip-float 5s ease-in-out infinite;
}

.motion-chip-two {
  bottom: 56px;
  right: -2%;
  animation: roomlane-chip-float 5s 1.2s ease-in-out infinite reverse;
}

@keyframes roomlane-3d-card-float {
  0%, 100% { transform: rotateX(10deg) rotateY(-18deg) rotateZ(-5deg) translate3d(0, 0, 0); }
  50% { transform: rotateX(12deg) rotateY(-13deg) rotateZ(-3deg) translate3d(0, -15px, 18px); }
}

@keyframes roomlane-card-sheen {
  0%, 35% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes roomlane-orbit-one {
  0% { transform: rotate(-28deg) rotateX(68deg) rotateZ(0deg); }
  100% { transform: rotate(-28deg) rotateX(68deg) rotateZ(360deg); }
}

@keyframes roomlane-orbit-two {
  0% { transform: rotate(52deg) rotateX(67deg) rotateZ(0deg); }
  100% { transform: rotate(52deg) rotateX(67deg) rotateZ(360deg); }
}

@keyframes roomlane-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 14px, 16px) scale(1.08); }
}

@keyframes roomlane-ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes roomlane-chip-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(7px, -11px, 0); }
}

@media (max-width: 1100px) {
  .motion-scene {
    opacity: 0.68;
    right: -80px;
    transform: scale(0.82) translate3d(var(--scene-tx, 0px), var(--scene-ty, 0px), 0);
    transform-origin: top right;
  }
}

@media (max-width: 880px) {
  .motion-scene {
    display: none;
  }

  .brand {
    font-size: 20px;
  }
}

/* Scroll choreography --------------------------------------------------- */
.hero {
  background-position: center calc(48% + var(--hero-bg-shift, 0px));
}

.motion-scene {
  transform: translate3d(var(--scene-tx, 0px), calc(var(--scene-ty, 0px) + var(--scene-scroll, 0px)), 0);
}

.property-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.property-card.is-tilting {
  box-shadow: 0 25px 60px rgba(10, 34, 46, 0.2);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.property-card.is-tilting .property-body {
  transform: translateZ(8px);
}

.property-body {
  transition: transform 260ms ease;
}

.story-scrolly {
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  margin: 150px 0 0;
  min-height: 1540px;
  position: relative;
}

.story-stage-wrap {
  height: min(650px, calc(100vh - 145px));
  min-height: 530px;
  position: sticky;
  top: 112px;
}

.story-panel {
  background: linear-gradient(145deg, #0c3046, #061a2a 72%);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(7, 29, 47, 0.2);
  color: var(--white);
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.story-panel::before {
  border: 1px solid rgba(98, 227, 199, 0.22);
  border-radius: 50%;
  content: "";
  height: 480px;
  position: absolute;
  right: -190px;
  top: -190px;
  width: 480px;
  animation: roomlane-ring-drift 12s ease-in-out infinite;
}

.story-panel-backdrop {
  background: radial-gradient(circle at 20% 22%, rgba(45, 212, 191, 0.3), transparent 32%), radial-gradient(circle at 80% 76%, rgba(108, 124, 247, 0.26), transparent 30%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.story-panel-topline,
.story-panel-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.story-panel-topline {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.story-live {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.story-live i {
  background: #62e3c7;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(98, 227, 199, 0.9);
  height: 5px;
  width: 5px;
}

.story-visual {
  height: calc(100% - 130px);
  min-height: 360px;
  position: relative;
}

.story-image {
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 25px;
  bottom: 37px;
  box-shadow: 18px 24px 55px rgba(0, 0, 0, 0.24);
  left: 9%;
  overflow: hidden;
  position: absolute;
  right: 9%;
  top: 42px;
  transform: rotate(-4deg);
  transition: background-image 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-image.is-changing {
  animation: roomlane-story-image-in 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.story-image::after {
  background: linear-gradient(180deg, rgba(4, 24, 36, 0.03), rgba(4, 24, 36, 0.62));
  content: "";
  inset: 0;
  position: absolute;
}

.story-image-badge {
  background: rgba(7, 29, 47, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  left: 16px;
  padding: 8px 10px;
  position: absolute;
  top: 16px;
  z-index: 2;
}

.story-image-shine {
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.26) 48%, transparent 65%);
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  animation: roomlane-card-sheen 7s 1s ease-in-out infinite;
  z-index: 2;
}

.story-mini-card {
  align-items: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(7, 29, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  bottom: 6px;
  display: flex;
  gap: 10px;
  left: 3%;
  padding: 11px 13px;
  position: absolute;
  transform: translateZ(24px);
  z-index: 3;
  animation: roomlane-chip-float 5s ease-in-out infinite;
}

.story-mini-icon {
  align-items: center;
  background: rgba(220, 174, 67, 0.18);
  border-radius: 9px;
  color: var(--gold);
  display: inline-flex;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.story-mini-card small,
.story-mini-card strong,
.story-panel-footer small,
.story-panel-footer strong {
  display: block;
}

.story-mini-card small,
.story-panel-footer small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  margin-bottom: 4px;
}

.story-mini-card strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.story-panel-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  bottom: 25px;
  left: 26px;
  padding-top: 14px;
  position: absolute;
  right: 26px;
}

.story-panel-footer strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.story-timeline {
  padding-top: 35px;
}

.story-intro {
  margin-bottom: 165px;
  max-width: 470px;
}

.story-intro h2,
.destination-header h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(37px, 4.5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin: 14px 0 19px;
}

.story-intro h2 em,
.destination-header h2 em {
  color: var(--teal);
  font-style: italic;
}

.story-intro p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}

.story-step {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  min-height: 345px;
  opacity: 0.3;
  padding: 30px 0 80px;
  transition: opacity 500ms ease, transform 500ms ease;
}

.story-step.active {
  opacity: 1;
  transform: translateX(8px);
}

.story-step-number {
  color: var(--teal);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding-top: 4px;
}

.story-step small {
  color: var(--gold);
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-step h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 14px 0 13px;
  max-width: 370px;
}

.story-step p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
  max-width: 320px;
}

.destination-scroll {
  height: 220vh;
  margin: 20px 0 0;
  position: relative;
}

.destination-sticky {
  background: var(--navy);
  border-radius: 32px;
  color: var(--white);
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  padding: 70px clamp(25px, 5vw, 66px);
  position: sticky;
  top: 0;
}

.destination-sticky::before,
.destination-sticky::after {
  border: 1px solid rgba(98, 227, 199, 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.destination-sticky::before {
  height: 570px;
  right: -260px;
  top: -280px;
  width: 570px;
}

.destination-sticky::after {
  border-color: rgba(220, 174, 67, 0.18);
  bottom: -260px;
  height: 450px;
  left: -230px;
  width: 450px;
}

.destination-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 38px;
  max-width: 1168px;
  position: relative;
  z-index: 1;
}

.destination-header h2 {
  color: var(--white);
  font-size: clamp(37px, 4.8vw, 65px);
  max-width: 620px;
}

.destination-header h2 em {
  color: #ead7a1;
}

.destination-hint {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.destination-hint b {
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  margin-left: 8px;
  vertical-align: -2px;
}

.destination-progress {
  background: rgba(255, 255, 255, 0.15);
  height: 1px;
  margin: 0 auto 34px;
  max-width: 1168px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.destination-progress span {
  background: linear-gradient(90deg, var(--gold), #62e3c7);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 100ms linear;
  width: 100%;
}

.destination-viewport {
  margin: 0 auto;
  max-width: 1168px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.destination-track {
  display: flex;
  gap: 20px;
  transform: translate3d(0, 0, 0);
  transition: transform 80ms linear;
  width: max-content;
  will-change: transform;
}

.destination-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  flex: 0 0 clamp(255px, 28vw, 330px);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.destination-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
}

.destination-image {
  background-position: center;
  background-size: cover;
  height: 300px;
  position: relative;
}

.destination-image::after {
  background: linear-gradient(180deg, transparent 42%, rgba(4, 24, 36, 0.7));
  content: "";
  inset: 0;
  position: absolute;
}

.destination-image > span {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  left: 17px;
  position: absolute;
  top: 17px;
  z-index: 1;
}

.destination-card > div:last-child {
  padding: 19px 19px 21px;
}

.destination-card small {
  color: #62e3c7;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.055em;
  margin: 9px 0 5px;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  margin: 0;
}

@keyframes roomlane-story-image-in {
  from { opacity: 0.35; transform: rotate(-8deg) scale(0.96); }
  to { opacity: 1; transform: rotate(-4deg) scale(1); }
}

@keyframes roomlane-ring-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-16px, 14px, 0) rotate(16deg); }
}

@media (max-width: 1100px) {
  .motion-scene {
    transform: scale(0.82) translate3d(var(--scene-tx, 0px), calc(var(--scene-ty, 0px) + var(--scene-scroll, 0px)), 0);
  }
}

@media (max-width: 880px) {
  .motion-scene {
    display: none;
  }

  .story-scrolly {
    display: block;
    margin-top: 95px;
    min-height: auto;
  }

  .story-stage-wrap {
    height: 500px;
    min-height: 0;
    position: relative;
    top: auto;
  }

  .story-timeline {
    padding-top: 80px;
  }

  .story-intro {
    margin-bottom: 75px;
  }

  .story-step {
    min-height: 250px;
    padding-bottom: 58px;
  }

  .destination-scroll {
    height: auto;
    margin-top: 80px;
  }

  .destination-sticky {
    border-radius: 23px;
    height: auto;
    min-height: 590px;
    padding: 42px 22px 35px;
    position: relative;
  }

  .destination-header {
    align-items: start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .destination-hint {
    display: block;
  }

  .destination-viewport {
    margin-right: -22px;
    overflow-x: auto;
    padding-right: 22px;
    scrollbar-width: none;
  }

  .destination-viewport::-webkit-scrollbar {
    display: none;
  }

  .destination-track {
    padding-bottom: 12px;
    transform: none !important;
  }

  .destination-card {
    flex-basis: 250px;
  }

  .destination-image {
    height: 235px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .property-card.is-tilting {
    transform: translateY(-4px);
  }

  .destination-track {
    transform: none !important;
  }
}

/* AlphaTach-inspired restraint: editorial scroll rhythm, no heavy 3D layer */
.motion-scene,
.story-scrolly,
.destination-scroll {
  display: none !important;
}

.property-card.is-tilting {
  box-shadow: none;
  transform: none;
}

.scroll-progress-line {
  background: linear-gradient(90deg, var(--gold), #62e3c7, var(--teal));
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 1000;
}

.editorial-marquee {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--navy);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.editorial-marquee-track {
  align-items: center;
  animation: roomlane-editorial-marquee 28s linear infinite;
  display: flex;
  gap: 27px;
  width: max-content;
}

.editorial-marquee-track span {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.editorial-marquee-track i {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
}

.property-card {
  perspective: 900px;
  transition: box-shadow 400ms ease, transform 400ms cubic-bezier(0.22, 1, 0.36, 1), border-color 400ms ease;
}

.property-card:hover {
  transform: translateY(-6px);
}

.property-card .property-image {
  clip-path: inset(0 round 0);
  transition: clip-path 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.property-card:hover .property-image {
  clip-path: inset(4px round 17px);
}

@keyframes roomlane-editorial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-marquee-track {
    animation: none;
  }
}

/* Cinematic scroll narrative ------------------------------------------- */
.cinema-scroll {
  background: #050505;
  color: var(--white);
  height: 245vh;
  position: relative;
}

.cinema-sticky {
  background: #050505;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  padding: 31px clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  transition: background 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gsap-ready .cinema-sticky {
  position: relative;
  top: auto;
}

.cinema-sticky::before {
  background: radial-gradient(circle at 50% 47%, rgba(16, 98, 100, 0.21), transparent 31%), radial-gradient(circle at 83% 15%, rgba(220, 174, 67, 0.11), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cinema-sticky::after {
  background-image: linear-gradient(rgba(155, 184, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(155, 184, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 700ms ease;
  z-index: 0;
}

.cinema-sticky[data-phase="1"] {
  background: radial-gradient(circle at 51% 48%, rgba(9, 112, 111, 0.2), transparent 34%), #050707;
}

.cinema-sticky[data-phase="2"] {
  background: radial-gradient(circle at 18% 50%, rgba(39, 73, 155, 0.29), transparent 39%), #060918;
}

.cinema-sticky[data-phase="2"]::after {
  opacity: 1;
}

.cinema-sticky[data-phase="3"] {
  background: radial-gradient(circle at 78% 43%, rgba(167, 96, 45, 0.18), transparent 35%), #0b0807;
}

.cinema-noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  position: absolute;
}

.cinema-topline {
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  justify-content: space-between;
  left: clamp(24px, 5vw, 76px);
  letter-spacing: 0.17em;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  text-transform: uppercase;
  top: 31px;
  z-index: 3;
}

.cinema-copy {
  left: clamp(24px, 7vw, 108px);
  max-width: 650px;
  position: absolute;
  top: 27%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 500ms ease;
  z-index: 2;
}

.cinema-sticky[data-phase="2"] .cinema-copy {
  left: auto;
  right: clamp(24px, 7vw, 108px);
  text-align: right;
}

.cinema-sticky[data-phase="2"] .cinema-copy p {
  margin-left: auto;
}

.cinema-kicker {
  color: var(--gold);
  display: inline-block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cinema-copy h2,
.editorial-image-copy h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(54px, 8.5vw, 142px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.86;
  margin: 20px 0 25px;
}

.cinema-copy h2 em,
.editorial-image-copy h2 em {
  color: #ead7a1;
  font-style: italic;
}

.cinema-sticky[data-phase="2"] .cinema-kicker {
  color: #9db7ff;
}

.cinema-sticky[data-phase="2"] .cinema-copy h2 em {
  color: #b8c9ff;
}

.cinema-sticky[data-phase="3"] .cinema-kicker {
  color: #f0b96c;
}

.cinema-copy p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 370px;
}

.cinema-art-wrap {
  height: 56vh;
  perspective: 1200px;
  position: absolute;
  right: clamp(13%, 17vw, 23%);
  top: 20%;
  transform: translate3d(var(--cinema-art-wrap-x, 0px), 0, 0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(29vw, 415px);
  z-index: 1;
}

.cinema-sticky[data-phase="2"] .cinema-art-wrap {
  --cinema-art-wrap-x: -34vw;
}

.cinema-art {
  background-color: #162529;
  background-position: center;
  background-size: cover;
  box-shadow: 24px 33px 90px rgba(0, 0, 0, 0.5);
  height: 100%;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, var(--cinema-art-y, 0px), 0) rotate(-3deg) scale(var(--cinema-art-scale, 1));
  transition: background-image 500ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-sticky[data-phase="1"] .cinema-art {
  filter: saturate(0.94) contrast(1.02);
}

.cinema-sticky[data-phase="2"] .cinema-art {
  filter: saturate(1.18) contrast(1.06);
}

.cinema-sticky[data-phase="3"] .cinema-art {
  filter: saturate(1.06) contrast(1.02);
}

.cinema-art-media {
  background-position: center;
  background-size: cover;
  display: none;
  inset: 0;
  opacity: 0;
  position: absolute;
  will-change: opacity, clip-path, transform;
  z-index: 0;
}

.cinema-art-media-a {
  opacity: 1;
}

.gsap-ready .cinema-art,
.gsap-ready .cinema-copy,
.gsap-ready .editorial-image-bg {
  transition: none;
}

.gsap-ready .cinema-art-media {
  display: block;
  transition: none;
}

.cinema-art::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.7));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.cinema-art::after {
  border: 1px solid rgba(255, 255, 255, 0.36);
  content: "";
  inset: 13px;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.cinema-art.is-changing {
  animation: roomlane-cinema-image-change 750ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cinema-art-label {
  bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  left: 27px;
  letter-spacing: 0.14em;
  position: absolute;
  z-index: 4;
}

.cinema-art-shine {
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.28) 47%, transparent 68%);
  inset: 0;
  position: absolute;
  transform: translateX(-125%);
  animation: roomlane-cinema-shine 8s ease-in-out infinite;
  z-index: 4;
}

.cinema-word {
  bottom: 8%;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(130px, 24vw, 390px);
  font-weight: 700;
  left: 3%;
  letter-spacing: -0.1em;
  line-height: 0.75;
  pointer-events: none;
  position: absolute;
  transform: translateX(var(--cinema-word-x, 0px));
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), color 700ms ease;
  z-index: 0;
}

.cinema-sticky[data-phase="2"] .cinema-word {
  left: auto;
  right: 3%;
}

.cinema-scroll-hint {
  bottom: 105px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.17em;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  z-index: 3;
}

.cinema-scroll-hint span {
  color: var(--gold);
  display: inline-block;
  font-size: 18px;
  margin-left: 8px;
  animation: roomlane-scroll-arrow 1.8s ease-in-out infinite;
}

.cinema-ticker {
  background: var(--gold);
  bottom: 0;
  color: var(--navy);
  left: 0;
  overflow: hidden;
  padding: 15px 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 4;
}

.cinema-sticky[data-phase="2"] .cinema-ticker {
  background: #9db7ff;
  color: #070b1b;
}

.cinema-ticker-track {
  align-items: center;
  animation: roomlane-editorial-marquee 26s linear infinite;
  display: flex;
  gap: 26px;
  width: max-content;
}

.cinema-ticker-track span {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cinema-ticker-track i {
  font-size: 13px;
  font-style: normal;
}

.editorial-image-section {
  background: #050505;
  color: var(--white);
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.editorial-image-bg {
  background-image: url("https://images.unsplash.com/photo-1544986581-efac024faf62?auto=format&fit=crop&w=2200&q=90");
  background-position: center;
  background-size: cover;
  inset: -5%;
  position: absolute;
  transform: scale(var(--editorial-image-scale, 1.05)) translateY(var(--editorial-image-y, 0px));
  transition: transform 100ms linear;
}

.editorial-image-overlay {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.22) 68%, rgba(5, 5, 5, 0.35)), linear-gradient(0deg, rgba(5, 5, 5, 0.54), transparent 50%);
  inset: 0;
  position: absolute;
}

.editorial-image-copy {
  left: clamp(24px, 7vw, 108px);
  max-width: 780px;
  position: absolute;
  top: 27%;
  z-index: 1;
}

.editorial-image-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}

.editorial-image-footer {
  bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
  display: flex;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  justify-content: space-between;
  left: clamp(24px, 5vw, 76px);
  letter-spacing: 0.15em;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  z-index: 2;
}

@keyframes roomlane-cinema-image-change {
  0% { opacity: 0.2; clip-path: inset(0 0 100% 0); transform: translate3d(0, 28px, 0) rotate(-6deg) scale(1.04); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0, 0, 0) rotate(-3deg) scale(1); }
}

@keyframes roomlane-cinema-shine {
  0%, 35% { transform: translateX(-125%); }
  70%, 100% { transform: translateX(125%); }
}

@keyframes roomlane-scroll-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 880px) {
  .cinema-scroll {
    height: 190vh;
  }

  .cinema-sticky {
    min-height: 680px;
    padding: 25px 20px;
  }

  .cinema-topline {
    left: 20px;
    right: 20px;
    top: 25px;
  }

  .cinema-copy {
    left: 20px;
    max-width: 80%;
    top: 20%;
  }

  .cinema-sticky[data-phase="2"] .cinema-copy {
    left: 20px;
    right: auto;
    text-align: left;
  }

  .cinema-sticky[data-phase="2"] .cinema-copy p {
    margin-left: 0;
  }

  .cinema-copy h2,
  .editorial-image-copy h2 {
    font-size: clamp(51px, 14vw, 87px);
  }

  .cinema-art-wrap {
    height: 38vh;
    right: 12%;
    top: 52%;
    width: 51vw;
  }

  .cinema-sticky[data-phase="2"] .cinema-art-wrap {
    --cinema-art-wrap-x: 0px;
  }

  .cinema-word {
    bottom: 18%;
    font-size: 37vw;
  }

  .cinema-sticky[data-phase="2"] .cinema-word {
    left: 3%;
    right: auto;
  }

  .cinema-scroll-hint {
    bottom: 88px;
    right: 20px;
  }

  .editorial-image-section {
    min-height: 650px;
  }

  .editorial-image-copy {
    left: 20px;
    max-width: 90%;
    top: 22%;
  }

  .editorial-image-footer {
    bottom: 25px;
    flex-direction: column;
    gap: 10px;
    left: 20px;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-ticker-track,
  .cinema-art-shine,
  .cinema-scroll-hint span {
    animation: none;
  }
}
