/* ============================================================
   Aurora Aesthetics — Landing page styles
   ------------------------------------------------------------
   Shared layout / typography for the example vertical landing
   pages (botox-readiness.html, laser-hair-removal-cost.html,
   skin-rejuvenation-match.html). Scoped under .lp-* to avoid
   colliding with the widget's .msw-* classes.

   The three pages each set --lp-accent / --lp-accent-soft /
   --lp-bg on :root to retheme without editing this file.
   ============================================================ */

:root {
  --lp-bg: #f3efe8;
  --lp-surface: #ffffff;
  --lp-surface-2: #faf6ee;
  --lp-ink: #1a1814;
  --lp-ink-soft: #5a554d;
  --lp-muted: #8a857c;
  --lp-line: #e0d9cb;
  --lp-accent: #b08a5b;
  --lp-accent-soft: #f3ead9;
  --lp-radius: 14px;
  --lp-radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lp-ink);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ---------- Layout primitives ---------- */
.lp-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section {
  padding: 72px 0;
}

.lp-section--tight { padding: 48px 0; }

.lp-divider {
  height: 1px;
  background: var(--lp-line);
  border: 0;
  margin: 0;
}

/* ---------- Top nav ---------- */
.lp-nav {
  border-bottom: 1px solid var(--lp-line);
  background: rgba(243, 239, 232, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-ink);
}

.lp-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.lp-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.lp-nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--lp-ink-soft);
}

.lp-nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.lp-nav-links a:hover {
  color: var(--lp-accent);
}

.lp-nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--lp-ink);
  color: #fff;
  transition: background 160ms ease;
}

.lp-nav-cta:hover { background: var(--lp-accent); }

@media (max-width: 720px) {
  .lp-nav-links { display: none; }
}

/* ---------- Hero ---------- */
.lp-hero {
  padding: 72px 0 56px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.lp-h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--lp-ink);
}

.lp-h1 em {
  font-style: italic;
  color: var(--lp-accent);
}

.lp-lede {
  font-size: 17px;
  color: var(--lp-ink-soft);
  max-width: 540px;
  margin: 0 0 24px;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 13px;
  color: var(--lp-ink-soft);
  margin-top: 8px;
}

.lp-hero-meta strong {
  color: var(--lp-ink);
  font-weight: 600;
}

.lp-hero-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(26,24,20,.04), 0 18px 50px rgba(26,24,20,.08);
}

.lp-hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}

.lp-hero-card p {
  font-size: 14px;
  color: var(--lp-ink-soft);
  margin: 0 0 18px;
}

.lp-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.lp-hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lp-ink);
}

.lp-hero-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  border: 1.5px solid var(--lp-accent);
  background-image: linear-gradient(45deg, transparent 45%, var(--lp-accent) 45%, var(--lp-accent) 55%, transparent 55%),
                    linear-gradient(-45deg, transparent 45%, var(--lp-accent) 45%, var(--lp-accent) 55%, transparent 55%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-btn {
  display: inline-block;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 160ms ease, transform 160ms ease;
}

.lp-btn-primary {
  background: var(--lp-ink);
  color: #fff;
}

.lp-btn-primary:hover { background: var(--lp-accent); transform: translateY(-1px); }

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-ink-soft);
  border-color: var(--lp-line);
}

.lp-btn-ghost:hover { color: var(--lp-ink); border-color: var(--lp-accent); }

@media (max-width: 880px) {
  .lp-hero { padding: 48px 0 40px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Trust strip ---------- */
.lp-trust {
  padding: 28px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-surface-2);
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-trust-row strong {
  color: var(--lp-ink);
  font-weight: 700;
}

/* ---------- Generic feature grid (benefits / who / what) ---------- */
.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.lp-section-head .lp-eyebrow { margin-bottom: 10px; }

.lp-h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.lp-h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.lp-section-head p {
  color: var(--lp-ink-soft);
  font-size: 16px;
  margin: 0;
}

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

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 26px 22px;
}

.lp-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--lp-ink-soft);
}

.lp-card-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}

@media (max-width: 880px) {
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Two-column "who / what you get" ---------- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.lp-split h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lp-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--lp-ink-soft);
}

.lp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--lp-accent);
}

@media (max-width: 880px) {
  .lp-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Widget stage ---------- */
.lp-widget-section {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-surface-2) 100%);
}

.lp-widget-stage {
  max-width: 640px;
  margin: 32px auto 0;
}

/* ---------- FAQ ---------- */
.lp-faq {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.lp-faq details {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 18px 22px;
}

.lp-faq details + details { margin-top: 0; }

.lp-faq summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: var(--lp-accent);
  font-weight: 300;
  transition: transform 200ms ease;
}

.lp-faq details[open] summary::after {
  content: "−";
}

.lp-faq details p {
  font-size: 15px;
  color: var(--lp-ink-soft);
  margin: 12px 0 0;
  line-height: 1.6;
}

/* ---------- CTA banner ---------- */
.lp-cta-banner {
  background: var(--lp-ink);
  color: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 0%, var(--lp-accent), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

.lp-cta-banner > * { position: relative; }

.lp-cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.lp-cta-banner p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 24px;
  max-width: 520px;
  font-size: 16px;
}

.lp-btn-cta {
  background: var(--lp-accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
  transition: filter 160ms ease, transform 160ms ease;
}

.lp-btn-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ---------- Demo install offer ---------- */
.lp-install-offer {
  padding-top: 18px;
}

.lp-install-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86)),
    radial-gradient(circle at 8% 0%, var(--lp-accent-soft), transparent 42%);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 12px 40px rgba(26,24,20,.06);
}

.lp-install-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-install-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

.lp-install-card p {
  color: var(--lp-ink-soft);
  margin: 0;
  max-width: 620px;
}

.lp-install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lp-install-note {
  grid-column: 1 / -1;
  color: var(--lp-muted);
  font-size: 12px;
  margin-top: -12px;
}

@media (max-width: 820px) {
  .lp-install-card {
    grid-template-columns: 1fr;
  }
  .lp-install-actions {
    justify-content: flex-start;
  }
}

/* ---------- Footer ---------- */
.lp-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--lp-line);
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-footer a {
  color: var(--lp-muted);
  text-decoration: none;
  margin-left: 18px;
}

.lp-footer a:hover { color: var(--lp-ink); }

.lp-disclaimer-block {
  font-size: 12px;
  color: var(--lp-muted);
  background: var(--lp-surface-2);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 14px 18px;
  max-width: 760px;
  margin: 24px auto 0;
  line-height: 1.55;
}

/* Skip link for a11y */
.lp-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lp-skip:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--lp-ink);
  color: #fff;
  border-radius: 8px;
  z-index: 100;
}
