/* ======================================
   LEAD MAGNET — stand-alone page
   Matches Voyage Noir luxury aesthetic
   ====================================== */

:root {
  --bg: #f5f0e8;
  --fg: #1a1714;
  --accent: #c9a84c;
  --accent-dark: #a8863a;
  --muted: #7a7068;
  --surface: #ece7de;
  --surface-dark: #2a2420;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.lm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lm-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(20%);
}
.lm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.4) 0%,
    rgba(13,11,9,0.65) 60%,
    rgba(13,11,9,0.88) 100%
  );
}
.lm-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 2rem 5rem;
  max-width: 760px;
}
.lm-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.lm-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.75rem;
}
.lm-headline em {
  font-style: italic;
  color: var(--accent);
}
.lm-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.lm-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.lm-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  display: inline-block;
}

/* ── PREVIEW ──────────────────────────────────────────────────────────────── */
.lm-preview {
  background: var(--surface);
  padding: 7rem 2rem;
}
.lm-preview-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.lm-preview-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  margin: 0.75rem 0 3rem;
}
.lm-experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lm-exp-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.lm-exp-item:first-child {
  border-top: 1px solid rgba(26,23,20,0.08);
}
.lm-exp-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.7;
}
.lm-exp-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
}
.lm-exp-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ── CAPTURE ────────────────────────────────────────────────────────────── */
.lm-capture {
  background: var(--fg);
  padding: 7rem 2rem;
}
.lm-capture-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.lm-advisor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
}
.lm-capture-right {
  padding-top: 0.5rem;
}
.lm-capture-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin: 0.75rem 0 1.25rem;
}
.lm-capture-headline em {
  font-style: italic;
  color: var(--accent);
}
.lm-capture-sub {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* ── FORM ─────────────────────────────────────────────────────────────────── */
.lm-form {
  max-width: 440px;
}
.lm-form-group {
  margin-bottom: 1.25rem;
}
.lm-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.5rem;
}
.lm-label .required {
  color: var(--accent);
}
.lm-input {
  width: 100%;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.lm-input::placeholder {
  color: rgba(245,240,232,0.25);
}
.lm-input:focus {
  border-color: var(--accent);
}
.lm-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.lm-submit:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.lm-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lm-form-note {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  margin-top: 1rem;
  line-height: 1.6;
}
.lm-form-note a {
  color: var(--accent);
  text-decoration: none;
}
.lm-form-note a:hover {
  text-decoration: underline;
}

/* ── SUCCESS / ERROR ─────────────────────────────────────────────────────── */
.lm-success {
  max-width: 440px;
}
.lm-success-icon {
  margin-bottom: 1.25rem;
}
.lm-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.lm-success-body {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.65;
}
.lm-error {
  max-width: 440px;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  color: var(--accent);
  font-size: 0.85rem;
}

/* ── FOOTER (override for dark bg) ───────────────────────────────────────── */
.lm-capture ~ .footer {
  background: #0d0b09;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lm-capture-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lm-advisor-photo {
    max-width: 260px;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .lm-exp-item {
    grid-template-columns: 50px 1fr;
  }
  .lm-exp-tag {
    display: none;
  }
}