/* =============================================
   Abodess Guest Guide — Editorial Luxury Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --brand:       #0099dd;
  --brand-light: #33bbff;
  --brand-dark:  #0077bb;
  --brand-glow:  rgba(0, 153, 221, 0.2);

  --ink:         #0d0d0d;
  --ink-light:   #1a1a1a;
  --paper:       #faf9f7;
  --paper-warm:  #f5f4f1;
  --cream:       #ebe9e4;
  --stone:       #8a8580;
  --stone-light: #b5b2ad;
  --copper:      #0a2342;
  --copper-light:#153a5f;
  --copper-glow: rgba(10, 35, 66, 0.2);

  --font-display: 'DM Serif Display', serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --nav-h:        72px;
  --header-h:     64px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Header */
.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  z-index: 300;
  border-bottom: 1px solid var(--cream);
}

.app-header .logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.app-header .prop-title {
  flex: 1;
  min-width: 0;
}

.app-header .prop-title .label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-family: var(--font-body);
}

.app-header .prop-title .name {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-display);
  margin-top: 2px;
}

/* Body */
.app-body {
  padding-top: var(--header-h);
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
  min-height: 100vh;
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeSlideIn 0.5s var(--ease-out-expo);
}

.tab-panel.active { display: block; }

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

/* Hero Section */
.hero-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out-expo);
  z-index: 0;
}

.hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.05) 0%,
    rgba(13, 13, 13, 0.3) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-wrap:hover img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px 36px;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 8px;
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.1s both;
}

.hero-overlay .hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 300;
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.2s both;
}

/* Welcome Notice */
.welcome-notice {
  margin: 24px 20px 0;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--paper);
  line-height: 1.5;
  animation: fadeSlideIn 0.5s var(--ease-out-expo) 0.3s both;
}

.welcome-notice .icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* Quick Info Cards */
.quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px 20px 0;
  animation: fadeSlideIn 0.5s var(--ease-out-expo) 0.4s both;
}

.quick-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid var(--cream);
  cursor: default;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.quick-card .qc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.quick-card:hover .qc-icon {
  background: var(--copper);
}

.quick-card .qc-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.quick-card .qc-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
  font-family: var(--font-display);
}

/* Section Heading */
.section-heading {
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  padding: 36px 20px 20px;
  position: relative;
  animation: fadeSlideIn 0.5s var(--ease-out-expo) both;
}

.section-heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
  margin-top: 12px;
}

/* Shortcut Grid */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 32px;
  animation: fadeSlideIn 0.5s var(--ease-out-expo) 0.5s both;
}

.shortcut-tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: 1px solid var(--cream);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.shortcut-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--copper-glow);
}

.shortcut-tile:active {
  transform: scale(0.97);
}

.shortcut-tile .st-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s var(--ease-out-expo);
}

.shortcut-tile:hover .st-icon {
  background: var(--copper);
  transform: scale(1.1) rotate(-5deg);
}

.shortcut-tile .st-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

/* Host Card */
.host-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--cream);
  transition: all 0.4s var(--ease-out-expo);
}

.host-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.host-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  color: #fff;
}

.host-info { flex: 1; min-width: 0; }

.host-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  font-family: var(--font-display);
}

.host-detail {
  font-size: 13px;
  color: var(--stone);
  margin-top: 4px;
  font-family: var(--font-body);
}

.host-msg {
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #fff;
  border-radius: 30px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
}

.host-msg:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--nav-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: flex;
  z-index: 300;
  border-top: 1px solid var(--cream);
}

.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 10px 12px 0;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--copper);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-btn.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-btn .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-btn .nav-icon svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-btn .nav-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-btn.active .nav-icon {
  color: var(--copper);
  transform: translateY(-2px);
}

.nav-btn.active .nav-icon svg {
  filter: drop-shadow(0 2px 8px var(--copper-glow));
}

.nav-btn.active .nav-label {
  color: var(--copper);
  font-weight: 600;
}

.nav-btn:active .nav-icon {
  transform: scale(0.9);
}

/* Content Pad */
.content-pad {
  padding: 0 20px 24px;
}

/* Steps Card */
.steps-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--cream);
  transition: background 0.2s ease;
}

.step:last-child { border-bottom: none; }

.step:hover {
  background: var(--paper-warm);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.step-body { flex: 1; min-width: 0; }

.step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* Info Block */
.info-block {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
}

.ib-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.ib-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
}

.ib-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 3px;
}

.ib-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.ib-divider {
  height: 1px;
  background: var(--cream);
  margin: 0 20px;
}

.ib-sub {
  font-size: 13px;
  color: var(--stone-light);
  margin-top: 3px;
}

.ib-tag {
  display: inline-block;
  background: var(--copper-glow);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--copper);
  margin-top: 6px;
}

/* Code Reveal */
.code-reveal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand);
  text-align: center;
  padding: 40px 24px;
  margin-bottom: 20px;
  position: relative;
}

.code-reveal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.cr-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.cr-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.cr-code {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  font-family: var(--font-mono);
  margin: 16px 0 20px;
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.cr-timer {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  font-family: var(--font-mono);
  margin: 16px 0 20px;
}

.cr-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.cr-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s var(--ease-out-expo);
}

.cr-copy:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.4);
}

/* WiFi Box */
.wifi-box {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 12px;
  border: 1px solid var(--cream);
}

.wifi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.wifi-row .wlabel {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.wifi-row .wvalue {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Checklist Card */
.checklist-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cream);
  font-size: 14px;
  color: var(--ink-light);
  transition: background 0.2s ease;
}

.check-item:last-child { border-bottom: none; }

.check-item:hover {
  background: var(--paper-warm);
}

.check-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Rules List */
.rules-list {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--cream);
  font-size: 14px;
  color: var(--ink-light);
}

.rule-item:last-child { border-bottom: none; }

.rule-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Recommendations */
.recs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rec-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--cream);
  transition: all 0.3s var(--ease-out-expo);
}

.rec-item:hover {
  transform: translateX(4px);
  border-color: var(--copper-glow);
}

.rec-emoji {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--paper-warm);
  border-radius: var(--radius-sm);
}

.rec-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.rec-desc {
  font-size: 13px;
  color: var(--stone);
  margin-top: 4px;
}

/* Maps Button */
.maps-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brand);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  -webkit-tap-highlight-color: transparent;
  margin: 0 20px;
}

.maps-button:hover {
  background: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.maps-button .map-icon {
  font-size: 22px;
}

/* Video Cards */
.video-card-full {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cream);
  transition: all 0.4s var(--ease-out-expo);
}

.video-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.video-card-full .thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--brand);
  overflow: hidden;
}

.video-card-full .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.video-card-full:hover .thumb img {
  transform: scale(1.05);
}

.video-card-full .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.video-card-full:hover .play {
  background: rgba(0,0,0,0.2);
}

.video-card-full .play svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s var(--ease-out-expo);
}

.video-card-full:hover .play svg {
  transform: scale(1.1);
}

.vid-label {
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  color: var(--ink);
}

/* Hidden */
.hidden { display: none !important; }

/* =============================================
   LANDING PAGE
   ============================================= */

.landing-hero {
  background: var(--brand);
  padding: 72px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeSlideIn 0.6s var(--ease-out-expo);
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(184, 115, 51, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 115, 51, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.landing-hero img {
  height: 48px;
  margin-bottom: 24px;
  position: relative;
}

.landing-hero h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.landing-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.06em;
  position: relative;
  font-family: var(--font-body);
}

/* Quick Directions on Landing */
.landing-directions {
  padding: 28px 20px 0;
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.1s both;
}

.landing-directions .dir-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 14px;
  padding: 0 4px;
}

.landing-directions .dir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.landing-directions .dir-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--cream);
  transition: all 0.3s var(--ease-out-expo);
}

.landing-directions .dir-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--copper-glow);
}

/* Property List */
.property-list {
  padding: 32px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.2s both;
}

.property-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid var(--cream);
  position: relative;
  overflow: hidden;
}

.property-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--copper);
  transition: width 0.4s var(--ease-out-expo);
}

.property-card:hover::before,
.property-card:active::before {
  width: 4px;
}

.property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.property-card:active {
  transform: translateY(-1px);
}

.property-card .pc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #fff;
  transition: background 0.3s ease;
}

.property-card:hover .pc-icon {
  background: var(--copper);
}

.property-card .pc-text { flex: 1; min-width: 0; }

.property-card .pc-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.property-card .pc-sub {
  font-size: 13px;
  color: var(--stone);
  margin-top: 4px;
}

.property-card .pc-arrow {
  color: var(--stone-light);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
}

.property-card:hover .pc-arrow {
  transform: translateX(4px);
  color: var(--copper);
}

/* More From Abodess */
.more-section {
  padding: 0 20px 32px;
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.3s both;
}

.more-section .more-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 14px;
  padding: 0 4px;
}

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

.more-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--cream);
  transition: all 0.3s var(--ease-out-expo);
}

.more-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.more-link .more-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.more-link:hover .more-icon {
  background: var(--copper-glow);
}

.more-link .more-text {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px 0 40px;
  font-size: 12px;
  color: var(--stone);
  animation: fadeSlideIn 0.6s var(--ease-out-expo) 0.4s both;
}

/* Carousel */
.carousel-wrap {
  padding: 0;
}

.carousel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  touch-action: pan-y;
  border: 1px solid var(--cream);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
  will-change: transform;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
  transition: all 0.3s var(--ease-out-expo);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid var(--cream);
  background: #fff;
}

.page-indicator {
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  font-family: var(--font-mono);
}

.dot-strip {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.dot.active {
  background: var(--copper);
  transform: scale(1.3);
}

/* Desktop */
@media (min-width: 700px) {
  .app-header, .bottom-nav {
    max-width: 680px;
    left: 50%;
    transform: translateX(-50%);
  }

  .app-body {
    max-width: 680px;
    margin: 0 auto;
  }

  .property-list {
    max-width: 680px;
  }

  .hero-overlay h1 {
    font-size: 52px;
  }
}

/* =============================================
   AI Chat Widget
   ============================================= */

#ab-chat-widget {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px);
  right: 16px;
  z-index: 9999;
  font-family: var(--font-body);
}

#ab-chat-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 153, 221, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#ab-chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 153, 221, 0.5);
}

#ab-chat-panel {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart);
}

#ab-chat-panel.ab-panel-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

#ab-chat-header {
  background: var(--brand);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#ab-chat-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

#ab-chat-title {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

#ab-chat-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  margin-top: 1px;
}

#ab-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.ab-msg {
  display: flex;
}

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

.ab-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.ab-msg-bot .ab-bubble {
  background: #f0f4f8;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
}

.ab-msg-user .ab-bubble {
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.ab-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}

.ab-typing span {
  width: 7px;
  height: 7px;
  background: #aab;
  border-radius: 50%;
  animation: ab-bounce 1.2s infinite;
}

.ab-typing span:nth-child(2) { animation-delay: 0.2s; }
.ab-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ab-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-6px); }
}

/* Suggestions */
#ab-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 4px;
}

.ab-suggestion {
  background: #eef6fc;
  border: 1px solid #cce6f5;
  color: var(--brand-dark);
  font-size: 12px;
  font-family: var(--font-body);
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.ab-suggestion:hover {
  background: #d9eefc;
}

/* Input row */
#ab-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

#ab-chat-input {
  flex: 1;
  border: 1.5px solid #ddd;
  border-radius: 22px;
  padding: 9px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: #fafafa;
  transition: border-color 0.15s;
}

#ab-chat-input:focus {
  border-color: var(--brand);
  background: #fff;
}

#ab-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.15s;
}

#ab-chat-send:hover { background: var(--brand-dark); }
#ab-chat-send:disabled { background: #ccc; cursor: not-allowed; }
}