:root {
  --base: #0a0a0a;
  --surface-0: #fafaf8;
  --accent: #c4b49a;
  --accent-dim: color-mix(in srgb, var(--accent) 55%, transparent);
  --accent-faint: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-faint2: color-mix(in srgb, var(--accent) 22%, transparent);
  --accent-border: color-mix(in srgb, var(--accent) 28%, transparent);
  --accent-border2: color-mix(in srgb, var(--accent) 50%, transparent);
  --accent-stroke: color-mix(in srgb, var(--accent) 75%, transparent);
  --accent-strong: color-mix(in srgb, var(--accent) 90%, #000 10%);
  --accent-ui-border: color-mix(in srgb, var(--accent) 85%, #000 15%);
  --accent-btn: color-mix( in srgb, var(--accent-contrast-ink) 24%, #000 76% );
  --accent-btn-hover: color-mix( in srgb, var(--accent-contrast-ink) 33%, #000 67% );
  --accent-ink-1: color-mix( in srgb, var(--accent-contrast-ink) 46%, #000 54% );
  --accent-ink-2: color-mix( in srgb, var(--accent-contrast-ink) 64%, #000 36% );
  --accent-ink-3: color-mix( in srgb, var(--accent-contrast-ink) 84%, #000 16% );
  --accent-ink-4: color-mix( in srgb, var(--accent-contrast-ink) 94%, #000 6% );
  --accent-contrast: #e7dccf;
  --accent-contrast-hover: color-mix(in srgb, var(--accent-contrast) 88%, #000 12%);
  --accent-contrast-ink: var(--accent);
  --on-accent: var(--accent-contrast);
  --h-gold: var(--accent);
  --h-dark: var(--base);
  --h-white: #f5f5f3;
  --h-dim: rgba(245, 245, 243, 0.55);
  --h-border: rgba(255, 255, 255, 0.09);
  --bg: var(--surface-0);
  --surface: #ffffff;
  --surface2: #f2f2f0;
  --ink: #111111;
  --ink2: #555555;
  --ink3: #a8a8a6;
  --line: #e0e0dc;
  --grey-base: #252523;
  --grey-light: #2e2e2c;
  --grey-mid: #3a3a38;
  --menu-bg: #ffffff;
  --menu-text: #111111;
  --menu-dim: #6b6b69;
  --menu-line: #ebebе8;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  --estado-ok: #2e7d5b;
  --estado-ok-ink: #f2faf6;
  --estado-res: #c08a2a;
  --estado-res-ink: #fffaf2;
  --estado-sold: #a8322a;
  --estado-sold-ink: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.45, 0, 0.55, 1);
  --menu-panel-width: min(280px, 82vw);
  --app-height: 100dvh;
  --fixed-controls-safe-top: calc(22px + env(safe-area-inset-top) + 50px + 14px);
  --ui-btn-size: 50px;
  --ui-btn-gap: 10px;
  --ui-btn-edge: 22px;
  --ui-btn-top: calc(22px + env(safe-area-inset-top));
  --ui-btn-bottom: calc(14px + env(safe-area-inset-bottom));
  --ui-btn-bg: rgba(240, 240, 238, 0.92);
  --ui-btn-border: rgba(0, 0, 0, 0.1);
  --ui-btn-color: rgba(26, 26, 24, 0.8);
  --z-r360-drawer: 3380;
  --menu-header-height: 130px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow: hidden;
  height: 100%;
}
body {
  background: var(--h-dark);
  font-family:
    "DM Sans",
    "Barlow",
    sans-serif;
  font-weight: 300;
  overflow: hidden;
  height: 100%;
  min-height: var(--app-height);
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
input,
textarea {
  user-select: text;
  -webkit-user-select: text;
}
img,
video {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
@media (pointer: coarse) {
  body {
    cursor: none !important;
  }
  #cur {
    display: none !important;
  }
}
@media (hover: none) and (orientation: portrait), (pointer: coarse) and (orientation: portrait) {
  html {
    touch-action: pan-x pan-y !important;
  }
  .modal-canvas,
  #r360IframeWrap {
    touch-action: auto !important;
  }
}
@media (max-width: 760px) {
  html {
    touch-action: pan-x pan-y !important;
  }
  .modal-canvas,
  #r360IframeWrap {
    touch-action: auto !important;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 64px;
  }
}
@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1%, -1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(-1%, 1%);
  }
}
@keyframes pageIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes pageOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes modalOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.99) translateY(4px);
  }
}
@keyframes shimmer {
  from {
    transform: translateX(-100%) skewX(-15deg);
  }
  to {
    transform: translateX(220%) skewX(-15deg);
  }
}
@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}
@keyframes rotatePhone {
  0%, 100% {
    transform: rotate(0deg);
  }
  40%, 60% {
    transform: rotate(90deg);
  }
}
@keyframes navSwipePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      inset 8px 0 12px rgba(255, 255, 255, 0.08),
      inset -8px 0 12px rgba(255, 255, 255, 0.08);
  }
  40% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      inset 14px 0 18px rgba(255, 255, 255, 0.14),
      inset -14px 0 18px rgba(255, 255, 255, 0.14);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      inset 8px 0 12px rgba(255, 255, 255, 0),
      inset -8px 0 12px rgba(255, 255, 255, 0);
  }
}
@keyframes titleBlurIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr {
  opacity: 1;
}
.sr.in {
  opacity: 1;
}
.sr-left {
  opacity: 1;
}
.sr-left.in {
  opacity: 1;
}
.sr-right {
  opacity: 1;
}
.sr-right.in {
  opacity: 1;
}
.d1 {
  transition-delay: 0.07s;
}
.d2 {
  transition-delay: 0.14s;
}
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 6px;
}
