/* lc-hollywood-mobile v1 — approved mockup v7 (None + logo overlay) */
body.lcm-mobile {
  --brand-navy: #0e1232;
  --brand-gold: #b2934e;
  --brand-body: #121849;
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --text: var(--brand-navy);
  --text-secondary: #4a4f6a;
  --text-tertiary: #86868b;
  --line: rgba(14, 18, 50, 0.08);
  --line-strong: rgba(14, 18, 50, 0.12);
  --blur: saturate(180%) blur(20px);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-pill: 980px;
  --shadow-soft: 0 2px 24px rgba(14, 18, 50, 0.06);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --logo-top: calc(14px + var(--safe-top));
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --addr-min-h: 3.2rem;
  --cinema-h: min(100dvh, calc(100vw * 16 / 9));
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

body.lcm-mobile * { box-sizing: border-box; }

body.lcm-mobile .lcm-app {
  min-height: 100dvh;
  padding-bottom: calc(88px + var(--safe-bottom));
}

body.lcm-mobile.on-hero .lcm-app { padding-bottom: calc(16px + var(--safe-bottom)); }

body.lcm-mobile .lcm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: calc(10px + var(--safe-top)) 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  pointer-events: none;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

body.lcm-mobile.on-hero .lcm-header {
  padding-top: calc(var(--logo-top) + 2px);
  align-items: flex-start;
}

body.lcm-mobile .lcm-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  pointer-events: auto;
}

body.lcm-mobile .lcm-header > * { pointer-events: auto; }

body.lcm-mobile .lcm-header-logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

body.lcm-mobile .lcm-header.scrolled .lcm-header-logo { opacity: 1; }

body.lcm-mobile .lcm-icon-btn {
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.14);
}

body.lcm-mobile .lcm-header.scrolled .lcm-icon-btn {
  background: rgba(14, 18, 50, 0.05);
  color: var(--brand-navy);
  border: none;
}

body.lcm-mobile .lcm-cinema {
  position: relative;
  width: 100%;
  height: var(--cinema-h);
  min-height: var(--cinema-h);
  background: #000;
}

body.lcm-mobile .lcm-cinema video,
body.lcm-mobile .lcm-cinema .lcm-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.lcm-mobile .lcm-brand {
  position: absolute;
  top: var(--logo-top);
  left: 20px;
  z-index: 7;
  pointer-events: none;
}

body.lcm-mobile .lcm-brand img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.95)) drop-shadow(0 1px 4px rgba(255,255,255,0.55)) drop-shadow(0 2px 12px rgba(0,0,0,0.28));
}

body.lcm-mobile .lcm-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.55;
  color: #fff;
  animation: lcmBob 2.2s ease-in-out infinite;
  border: none;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

body.lcm-mobile .lcm-scroll-hint:active {
  opacity: 0.85;
}

body.lcm-mobile:not(.on-hero) .lcm-scroll-hint {
  opacity: 0;
  pointer-events: none;
}

body.lcm-mobile .lcm-scroll-hint span {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes lcmBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

body.lcm-mobile .lcm-play-overlay {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  cursor: pointer; border: none; z-index: 5;
}

body.lcm-mobile .lcm-play-overlay.show { display: flex; }

body.lcm-mobile .lcm-play-overlay .circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
}

body.lcm-mobile .lcm-cinema-ui {
  position: absolute;
  bottom: 22px; right: 16px;
  z-index: 6;
}

body.lcm-mobile .lcm-sound-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px;
  border: none; border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: var(--font);
  font-size: 0.6875rem; font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
}

body.lcm-mobile .lcm-sound-toggle.on .lbl-off { display: none; }
body.lcm-mobile .lcm-sound-toggle:not(.on) .lbl-on { display: none; }

body.lcm-mobile .lcm-hero-copy {
  padding: 36px 24px 24px;
  background: var(--bg);
}

body.lcm-mobile .lcm-eyebrow {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

body.lcm-mobile .lcm-hero-copy h1 {
  font-size: clamp(1.5rem, 6.5vw, 1.875rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
  min-height: var(--addr-min-h);
  color: var(--brand-navy);
  margin: 0 0 6px;
}

body.lcm-mobile .lcm-locale {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

body.lcm-mobile .lcm-price {
  font-size: 1.125rem; font-weight: 500;
  color: var(--brand-body);
  margin-bottom: 14px;
}

body.lcm-mobile .lcm-meta-row {
  display: flex; flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

body.lcm-mobile .lcm-meta-row span {
  padding: 0 12px;
  border-right: 1px solid var(--line-strong);
}

body.lcm-mobile .lcm-meta-row span:first-child { padding-left: 0; }
body.lcm-mobile .lcm-meta-row span:last-child { border-right: none; }

body.lcm-mobile .lcm-open-house {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

body.lcm-mobile .lcm-open-house .oh-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 4px;
}

body.lcm-mobile .lcm-open-house .oh-when {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-navy);
}

body.lcm-mobile .lcm-cta-block { padding: 0 24px 32px; }

body.lcm-mobile .lcm-btn-primary {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 17px 24px;
  border: none; border-radius: var(--radius-pill);
  background: var(--brand-navy);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem; font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

body.lcm-mobile .lcm-btn-ghost {
  display: block; width: 100%; margin-top: 10px;
  padding: 12px; border: none; background: none;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; text-align: center;
}

body.lcm-mobile .lcm-block {
  padding: 44px 24px;
  border-top: 1px solid var(--line);
}

body.lcm-mobile .lcm-block-label {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

body.lcm-mobile .lcm-block-title {
  font-size: 1.25rem; font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin: 0 0 6px;
}

body.lcm-mobile .lcm-block-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

body.lcm-mobile .lcm-features {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

body.lcm-mobile .lcm-feature-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--brand-body);
}

body.lcm-mobile .lcm-feature-row:last-child { border-bottom: none; }

body.lcm-mobile .lcm-feature-row::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.45em;
}

body.lcm-mobile .lcm-feature-row strong {
  font-weight: 500;
  color: var(--brand-navy);
  min-width: 7.5rem;
  flex-shrink: 0;
}

body.lcm-mobile .lcm-gallery { display: flex; flex-direction: column; gap: 12px; }

body.lcm-mobile .lcm-gallery-feature {
  display: block; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 5;
  background: #eee;
}

body.lcm-mobile .lcm-gallery-feature img,
body.lcm-mobile .lcm-gallery-pair a img,
body.lcm-mobile .lcm-gallery-rest a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.lcm-mobile .lcm-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.lcm-mobile .lcm-gallery-pair a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  background: #eee;
}

body.lcm-mobile .lcm-link-minimal {
  display: inline-flex;
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-navy);
  background: none; border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
}

body.lcm-mobile .lcm-map-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

body.lcm-mobile .lcm-map-card img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }

body.lcm-mobile .lcm-map-caption {
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  display: flex;
  justify-content: space-between;
}

body.lcm-mobile .lcm-map-caption span:last-child { color: var(--brand-gold); font-weight: 500; }

body.lcm-mobile .lcm-agents-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

body.lcm-mobile .lcm-agents-solo { grid-template-columns: 1fr; max-width: 220px; margin-left: auto; margin-right: auto; }

body.lcm-mobile .lcm-agent-card {
  text-align: center;
  padding: 16px 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

body.lcm-mobile .lcm-agent-card img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid var(--brand-gold);
}

body.lcm-mobile .lcm-agent-card .aname {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
}

body.lcm-mobile .lcm-agent-card .arole {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin: 2px 0 8px;
}

body.lcm-mobile .lcm-agent-card a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-gold);
  text-decoration: none;
}

body.lcm-mobile .lcm-form input {
  width: 100%; padding: 16px 18px;
  border: none; border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font); font-size: 1rem;
  color: var(--brand-navy);
  outline: none;
}

body.lcm-mobile .lcm-form {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

body.lcm-mobile .lcm-form .lcm-btn-primary { margin: 20px 16px 16px; width: calc(100% - 32px); }

body.lcm-mobile .lcm-legal {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 12px;
}

body.lcm-mobile .lcm-genie-footer {
  text-align: center;
  padding: 28px 24px 16px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 0.75rem;
  line-height: 1.6;
}

body.lcm-mobile .lcm-genie-footer a {
  color: inherit;
  text-decoration: none;
}

body.lcm-mobile .lcm-genie-footer-1pp {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

body.lcm-mobile .lcm-genie-footer-copy,
body.lcm-mobile .lcm-genie-footer-genie,
body.lcm-mobile .lcm-genie-footer-patent {
  margin: 0 0 8px;
}

body.lcm-mobile .lcm-genie-footer-copy strong,
body.lcm-mobile .lcm-genie-footer-genie strong,
body.lcm-mobile .lcm-genie-footer-patent strong {
  font-weight: 500;
}

body.lcm-mobile .lcm-genie-footer-love {
  width: 168px;
  max-width: 72%;
  height: auto;
  display: block;
  margin: 4px auto 10px;
}

body.lcm-mobile .lcm-tabbar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 8px 16px calc(10px + var(--safe-bottom));
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: var(--blur);
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

body.lcm-mobile .lcm-tabbar.hero-visible {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

body.lcm-mobile .lcm-tabbar-inner { display: flex; justify-content: space-around; }

body.lcm-mobile .lcm-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 8px; border: none; background: none;
  cursor: pointer; font-family: var(--font);
  font-size: 0.6rem; font-weight: 500;
  color: var(--text-tertiary);
}

body.lcm-mobile .lcm-tab.active { color: var(--brand-navy); }
body.lcm-mobile .lcm-tab svg { width: 21px; height: 21px; stroke-width: 1.5; }

body.lcm-mobile .lcm-lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  align-items: center; justify-content: center; padding: 24px;
}

body.lcm-mobile .lcm-lightbox.open { display: flex; }

body.lcm-mobile .lcm-lightbox img { max-width: 100%; max-height: 85dvh; object-fit: contain; }

body.lcm-mobile .lcm-lightbox-close {
  position: absolute; top: calc(16px + var(--safe-top)); right: 20px;
  width: 32px; height: 32px; border: none;
  background: rgba(0,0,0,0.06); border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
}

body.lcm-mobile .lcm-gallery-rest { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }

body.lcm-mobile .lcm-gallery-rest a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  background: #eee;
}

body.lcm-mobile .lcm-min-legal {
  padding: 24px;
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
  border-top: 1px solid var(--line);
}
