/* ==========================================================================
   ListingPortrait Theme — lp-theme.css
   Premium estate agent property portrait platform
   Version 1.0.0
   ========================================================================== */

/* ── 1. Custom Properties ────────────────────────────────────────────────── */
:root {
  /* Palette */
  --lp-cream:        #faf7f2;
  --lp-cream-2:      #f3ede3;
  --lp-cream-3:      #e8dfd0;
  --lp-cream-4:      #ddd5c4;
  --lp-charcoal:     #141414;
  --lp-charcoal-2:   #2e2e2e;
  --lp-charcoal-3:   #4a4a4a;
  --lp-charcoal-4:   #6a6a6a;
  --lp-gold:         #b89468;
  --lp-gold-2:       #9a7a52;
  --lp-gold-3:       #d4b48a;
  --lp-gold-4:       #f0e4d0;
  --lp-white:        #ffffff;
  --lp-success:      #27795a;
  --lp-error:        #c0392b;
  --lp-border:       #ddd5c5;
  --lp-border-light: #e8e0d4;

  /* Typography */
  --lp-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --lp-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --lp-max-w:     1200px;
  --lp-prose-w:   760px;
  --lp-legal-w:   680px;
  --lp-radius:    3px;
  --lp-radius-lg: 6px;

  /* Transitions */
  --lp-ease:    cubic-bezier(.25,.46,.45,.94);
  --lp-ease-in: cubic-bezier(.55,.055,.675,.19);

  /* Shadows */
  --lp-shadow-sm: 0 1px 4px rgba(20,20,20,.06);
  --lp-shadow:    0 4px 20px rgba(20,20,20,.08);
  --lp-shadow-lg: 0 12px 48px rgba(20,20,20,.14);
  --lp-shadow-xl: 0 24px 80px rgba(20,20,20,.18);
}

/* ── 2. Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--lp-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--lp-charcoal);
  background-color: var(--lp-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* ── 3. Typography Scale ─────────────────────────────────────────────────── */
.lp-h1 {
  font-family: var(--lp-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.lp-h2 {
  font-family: var(--lp-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lp-h3 {
  font-family: var(--lp-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.lp-h4 {
  font-family: var(--lp-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
.lp-lead {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--lp-charcoal-3);
}
.lp-small {
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* ── 4. Layout Utilities ─────────────────────────────────────────────────── */
.lp-container {
  max-width: var(--lp-max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.lp-prose-container  { max-width: var(--lp-prose-w); margin-inline: auto; padding-inline: 24px; }
.lp-legal-container  { max-width: var(--lp-legal-w); margin-inline: auto; padding-inline: 24px; }
.lp-section          { padding-block: clamp(64px, 8vw, 104px); }
.lp-section--cream   { background: var(--lp-cream-2); }
.lp-section--dark    { background: var(--lp-charcoal); color: var(--lp-cream); }
.lp-section--border  { border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.lp-text-center      { text-align: center; }

/* Grid helpers */
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── 5. Announcement Bar ─────────────────────────────────────────────────── */
.lp-announce {
  background: var(--lp-charcoal);
  color: var(--lp-cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.lp-announce__inner { max-width: var(--lp-max-w); margin-inline: auto; }

/* ── 6. Header & Navigation ──────────────────────────────────────────────── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  transition: box-shadow 0.25s var(--lp-ease);
}
.lp-header.lp-scrolled { box-shadow: var(--lp-shadow); }

.lp-header__inner {
  max-width: var(--lp-max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.lp-header__logo { text-decoration: none; flex-shrink: 0; }
.lp-header__logo img { height: 36px; width: auto; }
.lp-logo-text { display: flex; align-items: baseline; gap: 1px; }
.lp-logo-text__main {
  font-family: var(--lp-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--lp-charcoal);
  letter-spacing: -0.01em;
  line-height: 1;
}
.lp-logo-text__accent {
  font-family: var(--lp-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--lp-gold);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Primary nav */
.lp-nav { flex: 1; }
.lp-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.lp-nav__item { position: relative; }
.lp-nav__link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-charcoal-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--lp-radius);
  letter-spacing: 0.02em;
  transition: color 0.16s, background 0.16s;
  white-space: nowrap;
}
.lp-nav__link:hover,
.lp-nav__item--active .lp-nav__link {
  color: var(--lp-charcoal);
  background: var(--lp-cream-2);
}
.lp-nav__item--active .lp-nav__link { color: var(--lp-gold); }

/* Dropdown */
.lp-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s var(--lp-ease), transform 0.18s var(--lp-ease), visibility 0.18s;
  list-style: none;
}
.lp-nav__item--has-children:hover .lp-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lp-nav__dropdown .lp-nav__link {
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: var(--lp-radius);
}

/* Header actions */
.lp-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.lp-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--lp-charcoal);
  border-radius: 2px;
  transition: transform 0.22s var(--lp-ease), opacity 0.18s;
}
.lp-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lp-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.lp-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 16px 24px 24px;
  box-shadow: var(--lp-shadow-lg);
}
.lp-mobile-nav.lp-mobile-nav--open { display: block; }
.lp-mobile-nav__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.lp-mobile-nav__list .lp-nav__link {
  font-size: 1rem;
  padding: 12px 14px;
  color: var(--lp-charcoal);
}
.lp-mobile-nav__cta { border-top: 1px solid var(--lp-border); padding-top: 20px; }

/* ── 7. Buttons ──────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lp-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--lp-radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s var(--lp-ease), color 0.18s, border-color 0.18s, transform 0.1s, box-shadow 0.18s;
}
.lp-btn:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 3px;
}
.lp-btn svg { flex-shrink: 0; transition: transform 0.18s var(--lp-ease); }
.lp-btn:hover svg { transform: translateX(2px); }

.lp-btn--primary {
  background: var(--lp-gold);
  color: var(--lp-white);
  border-color: var(--lp-gold);
}
.lp-btn--primary:hover {
  background: var(--lp-gold-2);
  border-color: var(--lp-gold-2);
  color: var(--lp-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 148, 104, 0.35);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-charcoal);
  border-color: var(--lp-border);
}
.lp-btn--outline:hover {
  border-color: var(--lp-charcoal);
  background: var(--lp-cream-2);
  color: var(--lp-charcoal);
}

.lp-btn--ghost-light {
  background: transparent;
  color: rgba(250, 247, 242, 0.72);
  border-color: rgba(250, 247, 242, 0.22);
}
.lp-btn--ghost-light:hover {
  color: var(--lp-cream);
  border-color: rgba(250, 247, 242, 0.5);
}

.lp-btn--dark {
  background: var(--lp-charcoal);
  color: var(--lp-cream);
  border-color: var(--lp-charcoal);
}
.lp-btn--dark:hover {
  background: var(--lp-charcoal-2);
  border-color: var(--lp-charcoal-2);
  color: var(--lp-cream);
}

.lp-btn--nav-cta {
  background: var(--lp-charcoal);
  color: var(--lp-cream);
  border-color: var(--lp-charcoal);
  font-size: 0.8125rem;
  padding: 10px 20px;
}
.lp-btn--nav-cta:hover {
  background: var(--lp-charcoal-2);
  border-color: var(--lp-charcoal-2);
  color: var(--lp-cream);
}

.lp-btn--sm { padding: 10px 20px; font-size: 0.8125rem; }
.lp-btn--lg { padding: 18px 36px; font-size: 0.9375rem; }
.lp-btn--xl { padding: 20px 44px; font-size: 1rem; }
.lp-btn--full { width: 100%; }

/* ── 8. Section Labels (eyebrows) ────────────────────────────────────────── */
.lp-section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
}
.lp-section-label--light { color: var(--lp-gold-3); }
.lp-section-label--center { text-align: center; }

/* ── 9. Hero ─────────────────────────────────────────────────────────────── */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(92vh, 900px);
  overflow: hidden;
}

/* Hero left — dark panel */
.lp-hero__left {
  background: var(--lp-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px) clamp(48px, 7vw, 96px) clamp(32px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.lp-hero__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(184,148,104,.11) 0%, transparent 68%);
  pointer-events: none;
}

.lp-hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold-3);
  margin-bottom: 24px;
}

.lp-hero__headline {
  font-family: var(--lp-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 600;
  color: var(--lp-cream);
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  position: relative;
}
.lp-hero__headline em {
  font-style: italic;
  color: var(--lp-gold-3);
}

.lp-hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 44px;
}

.lp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-hero__trust {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.lp-hero__trust-item { display: flex; flex-direction: column; gap: 5px; }
.lp-hero__trust-item strong {
  font-family: var(--lp-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-cream);
  line-height: 1;
}
.lp-hero__trust-item span {
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

/* Hero right — portrait panel */
.lp-hero__right {
  background: var(--lp-cream-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-hero__portrait-area {
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Portrait frames */
.lp-portrait-frame {
  background: var(--lp-white);
  border: 1px solid var(--lp-border-light);
  padding: 10px;
  box-shadow: var(--lp-shadow-xl);
}
.lp-portrait-frame--main {
  position: relative;
  z-index: 2;
  width: min(340px, 65%);
}
.lp-portrait-frame--secondary {
  position: absolute;
  bottom: 60px;
  right: 32px;
  z-index: 3;
  width: min(200px, 38%);
  transform: rotate(2.5deg);
}
.lp-portrait-frame--tertiary {
  position: absolute;
  top: 48px;
  left: 28px;
  z-index: 1;
  width: min(160px, 30%);
  transform: rotate(-2deg);
  opacity: 0.82;
}
.lp-portrait-frame img,
.lp-portrait-frame svg { width: 100%; display: block; }
.lp-portrait-caption {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-charcoal-3);
  padding: 8px 6px 4px;
  text-align: center;
  font-weight: 500;
  font-family: var(--lp-sans);
}

/* Scroll indicator */
.lp-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--lp-charcoal-4);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: lp-scroll-bob 2.4s ease-in-out infinite;
}
.lp-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--lp-border), transparent);
}
@keyframes lp-scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 10. Stats Strip ─────────────────────────────────────────────────────── */
.lp-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-stat-item {
  padding: 36px 32px;
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-item__number {
  font-family: var(--lp-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--lp-charcoal);
  line-height: 1;
}
.lp-stat-item__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-charcoal-3);
}
.lp-stat-item__desc {
  font-size: 0.8125rem;
  color: var(--lp-charcoal-4);
  line-height: 1.55;
  margin-top: 4px;
}

/* ── 11. Portrait Style Cards ────────────────────────────────────────────── */
.lp-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-style-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: transform 0.24s var(--lp-ease), box-shadow 0.24s var(--lp-ease);
}
.lp-style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-style-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--lp-cream-2);
}
.lp-style-card__image img,
.lp-style-card__image svg { width: 100%; height: 100%; object-fit: cover; }
.lp-style-card__body { padding: 24px 22px 22px; }
.lp-style-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.lp-badge--bestseller { background: #f0ebe0; color: #7a6040; }
.lp-badge--modern     { background: #e8eef8; color: #2a4a8a; }
.lp-badge--classic    { background: #e8f0e8; color: #2a5a3a; }
.lp-badge--new        { background: #f0e8f4; color: #5a2a7a; }

.lp-style-card__name {
  font-family: var(--lp-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-charcoal);
  margin-bottom: 8px;
}
.lp-style-card__desc {
  font-size: 0.875rem;
  color: var(--lp-charcoal-4);
  line-height: 1.6;
  margin-bottom: 18px;
}
.lp-style-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--lp-border-light);
}
.lp-style-card__price {
  font-family: var(--lp-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--lp-charcoal);
}
.lp-style-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-gold);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.18s var(--lp-ease), color 0.16s;
}
.lp-style-card__cta:hover { color: var(--lp-gold-2); gap: 10px; }

/* ── 12. How It Works ────────────────────────────────────────────────────── */
.lp-how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lp-steps { display: flex; flex-direction: column; }
.lp-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-step:last-child { border-bottom: none; }
.lp-step__num {
  font-family: var(--lp-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-gold);
  letter-spacing: 0.06em;
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}
.lp-step__title {
  font-family: var(--lp-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lp-charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}
.lp-step__desc {
  font-size: 0.875rem;
  color: var(--lp-charcoal-4);
  line-height: 1.65;
}
.lp-how-visual {
  position: sticky;
  top: 100px;
}
.lp-how-visual__frame {
  background: var(--lp-cream-3);
  border: 1px solid var(--lp-border);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.lp-how-visual__frame img,
.lp-how-visual__frame svg { width: 100%; height: 100%; object-fit: cover; }
.lp-how-visual__cta { margin-top: 24px; text-align: center; }

/* ── 13. Gallery Strip ───────────────────────────────────────────────────── */
.lp-gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.lp-gallery-item {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--lp-cream-2);
}
.lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--lp-ease);
}
.lp-gallery-item:hover img { transform: scale(1.05); }
.lp-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s var(--lp-ease);
  display: flex;
  align-items: flex-end;
}
.lp-gallery-item:hover .lp-gallery-item__overlay { opacity: 1; }
.lp-gallery-item__caption {
  padding: 16px 14px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.9);
  transform: translateY(4px);
  transition: transform 0.28s var(--lp-ease);
}
.lp-gallery-item:hover .lp-gallery-item__caption { transform: none; }

/* ── 14. Estate Agents Section ───────────────────────────────────────────── */
.lp-agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lp-agent-features { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.lp-agent-feature { display: flex; gap: 20px; align-items: flex-start; }
.lp-agent-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 148, 104, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lp-gold-3);
  font-size: 1.125rem;
  line-height: 1;
}
.lp-agent-feature__title {
  font-family: var(--lp-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lp-cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.lp-agent-feature__desc {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.58);
  line-height: 1.65;
}

/* Kit card */
.lp-kit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 36px;
}
.lp-kit-card__label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  font-weight: 600;
  margin-bottom: 24px;
}
.lp-kit-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.lp-kit-features li {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.72);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.lp-kit-features li::before {
  content: '✓';
  color: var(--lp-gold-3);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-kit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.lp-kit-price {
  font-family: var(--lp-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lp-cream);
  line-height: 1;
}
.lp-kit-price-note {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.35);
  margin-top: 4px;
}

/* ── 15. Pricing ─────────────────────────────────────────────────────────── */
.lp-pricing-intro {
  font-size: 0.875rem;
  color: var(--lp-charcoal-4);
  margin-top: 8px;
  margin-bottom: 48px;
}
.lp-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-price-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}
.lp-price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
}
.lp-price-card--featured {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 1px var(--lp-gold);
}
.lp-price-card__badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--lp-gold);
  color: var(--lp-white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.lp-price-card__name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-charcoal-3);
  margin-bottom: 16px;
}
.lp-price-card__amount {
  font-family: var(--lp-serif);
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--lp-charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.lp-price-card__amount sup {
  font-size: 1rem;
  vertical-align: super;
  margin-top: 8px;
  font-weight: 400;
}
.lp-price-card__period { font-size: 0.75rem; color: var(--lp-charcoal-4); margin-bottom: 24px; }
.lp-price-card__divider { height: 1px; background: var(--lp-border-light); margin-bottom: 24px; }
.lp-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.lp-price-features li {
  font-size: 0.8125rem;
  color: var(--lp-charcoal-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.lp-price-features li::before {
  content: '✓';
  color: var(--lp-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-price-features li.lp-feature--no::before { content: '–'; color: var(--lp-charcoal-4); }
.lp-price-features li.lp-feature--no { color: var(--lp-charcoal-4); }

/* ── 16. Reviews ─────────────────────────────────────────────────────────── */
.lp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-review-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}
.lp-review-card:hover { transform: translateY(-2px); box-shadow: var(--lp-shadow); }
.lp-stars {
  display: flex;
  gap: 2px;
  color: var(--lp-gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.lp-review-text {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--lp-charcoal-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}
.lp-review-author { display: flex; align-items: center; gap: 12px; }
.lp-review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-charcoal-3);
  flex-shrink: 0;
  font-family: var(--lp-serif);
  border: 1px solid var(--lp-border-light);
}
.lp-review-name { font-size: 0.875rem; font-weight: 500; color: var(--lp-charcoal); line-height: 1.3; }
.lp-review-role { font-size: 0.75rem; color: var(--lp-charcoal-4); margin-top: 2px; }
.lp-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  font-weight: 600;
  margin-top: 3px;
}

/* ── 17. FAQ ─────────────────────────────────────────────────────────────── */
.lp-faq-wrap { max-width: 720px; margin-inline: auto; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border); overflow: hidden; }
.lp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--lp-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--lp-charcoal);
  letter-spacing: -0.005em;
  list-style: none;
  user-select: none;
  transition: color 0.16s;
}
.lp-faq-question:hover { color: var(--lp-charcoal-2); }
.lp-faq-question::-webkit-details-marker { display: none; }
.lp-faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--lp-charcoal-3);
  transition: transform 0.24s var(--lp-ease), background 0.18s, border-color 0.18s, color 0.16s;
}
details[open] .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--lp-charcoal);
  border-color: var(--lp-charcoal);
  color: var(--lp-cream);
}
.lp-faq-answer {
  font-size: 0.9375rem;
  color: var(--lp-charcoal-3);
  line-height: 1.72;
  padding-bottom: 24px;
  max-width: 620px;
}

/* ── 18. Final CTA Section ───────────────────────────────────────────────── */
.lp-final-cta {
  background: var(--lp-cream-2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  text-align: center;
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
}
.lp-final-cta__headline {
  font-family: var(--lp-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-charcoal);
  margin-bottom: 16px;
  line-height: 1.1;
}
.lp-final-cta__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--lp-charcoal-3);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}
.lp-final-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-final-cta__note {
  font-size: 0.75rem;
  color: var(--lp-charcoal-4);
  letter-spacing: 0.04em;
}

/* ── 19. Legal footer disclaimer ─────────────────────────────────────────── */
.lp-legal-footer-disclaimer {
  background: var(--lp-charcoal);
  color: rgba(250, 247, 242, 0.5);
  padding: 36px 80px;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.lp-legal-footer-disclaimer p { max-width: 840px; margin-inline: auto; margin-bottom: 16px; }
.lp-legal-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  max-width: 840px;
  margin-inline: auto;
}
.lp-legal-footer-nav a {
  color: rgba(250, 247, 242, 0.4);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.lp-legal-footer-nav a:hover { color: var(--lp-cream); }

/* ── 20. Footer ──────────────────────────────────────────────────────────── */
.lp-footer {
  background: var(--lp-charcoal);
  color: var(--lp-cream);
  padding: 72px clamp(24px, 7vw, 96px) 36px;
}
.lp-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.lp-footer__logo { display: block; text-decoration: none; margin-bottom: 16px; }
.lp-footer .lp-logo-text__main { color: var(--lp-cream); }
.lp-footer .lp-logo-text__accent { color: var(--lp-gold-3); }
.lp-footer__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 12px;
}
.lp-footer__sub-tagline {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.28);
  letter-spacing: 0.06em;
}
.lp-footer__heading {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.3);
  margin-bottom: 20px;
}
.lp-footer__links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.lp-footer__links a {
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.55);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.4;
}
.lp-footer__links a:hover { color: var(--lp-cream); }
.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer__copy { font-size: 0.75rem; color: rgba(250, 247, 242, 0.28); }
.lp-footer__legal-nav { display: flex; gap: 24px; }
.lp-footer__legal-nav a {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.28);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer__legal-nav a:hover { color: rgba(250, 247, 242, 0.6); }

/* ── 21. Page Templates ──────────────────────────────────────────────────── */
.lp-prose-page { padding-block: 64px 88px; }
.lp-page-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--lp-border); }
.lp-page-title {
  font-family: var(--lp-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-charcoal);
}
.lp-page-content { font-size: 0.9375rem; line-height: 1.75; color: var(--lp-charcoal-2); }
.lp-page-content p { margin-bottom: 1.25em; }
.lp-page-content h2 { font-family: var(--lp-serif); font-size: 1.625rem; font-weight: 600; margin: 2em 0 0.75em; color: var(--lp-charcoal); }
.lp-page-content h3 { font-family: var(--lp-serif); font-size: 1.25rem; font-weight: 600; margin: 1.5em 0 0.5em; color: var(--lp-charcoal); }
.lp-page-content a { color: var(--lp-gold-2); text-decoration: underline; }
.lp-page-content ul, .lp-page-content ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.lp-page-content li { margin-bottom: 0.5em; }
.lp-page-content strong { font-weight: 600; color: var(--lp-charcoal); }

/* Legal pages */
.lp-legal-container { padding-block: 64px 88px; }
.lp-legal-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--lp-border); }
.lp-legal-title {
  font-family: var(--lp-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.lp-legal-updated { font-size: 0.8125rem; color: var(--lp-charcoal-4); }
.lp-legal-content { font-size: 0.9375rem; line-height: 1.8; color: var(--lp-charcoal-3); }
.lp-legal-content p { margin-bottom: 1.2em; }
.lp-legal-content h2 { font-family: var(--lp-serif); font-size: 1.375rem; font-weight: 600; margin: 2em 0 0.75em; color: var(--lp-charcoal); }
.lp-legal-content ul { padding-left: 1.5em; margin-bottom: 1.2em; }
.lp-legal-content li { margin-bottom: 0.5em; }
.lp-legal-content a { color: var(--lp-gold-2); text-decoration: underline; }

/* ── 22. Scroll Animations ───────────────────────────────────────────────── */
.lp-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--lp-ease), transform 0.65s var(--lp-ease);
}
.lp-fade-up.lp-visible { opacity: 1; transform: none; }
.lp-fade-up:nth-child(2) { transition-delay: 0.1s; }
.lp-fade-up:nth-child(3) { transition-delay: 0.2s; }
.lp-fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .lp-fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .lp-hero__scroll { animation: none; }
}

/* ── 23. WooCommerce ─────────────────────────────────────────────────────── */
.lp-woo-container { padding-block: 64px; }

/* ── 24. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lp-pricing-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-styles-grid   { gap: 20px; }
  .lp-gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .lp-hero           { grid-template-columns: 1fr; min-height: auto; }
  .lp-hero__right    { min-height: 60vw; display: none; }
  .lp-hero__left     { padding: 64px clamp(24px, 6vw, 56px); }
  .lp-how-grid       { grid-template-columns: 1fr; gap: 48px; }
  .lp-how-visual     { position: static; }
  .lp-agents-grid    { grid-template-columns: 1fr; gap: 48px; }
  .lp-reviews-grid   { grid-template-columns: 1fr 1fr; }
  .lp-footer__top    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lp-stats-strip    { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-item:nth-child(2) { border-right: none; }
  .lp-stat-item:nth-child(3) { border-top: 1px solid var(--lp-border); }
  .lp-stat-item:nth-child(4) { border-top: 1px solid var(--lp-border); }
  .lp-legal-footer-disclaimer { padding: 36px 24px; }
}

@media (max-width: 768px) {
  .lp-nav           { display: none; }
  .lp-hamburger     { display: flex; }
  .lp-header__inner { gap: 16px; }
  .lp-btn--nav-cta  { display: none; }
  .lp-styles-grid   { grid-template-columns: 1fr; }
  .lp-pricing-grid  { grid-template-columns: 1fr; gap: 16px; }
  .lp-reviews-grid  { grid-template-columns: 1fr; }
  .lp-footer__top   { grid-template-columns: 1fr; gap: 32px; }
  .lp-gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .lp-hero__actions { flex-direction: column; align-items: flex-start; }
  .lp-hero__actions .lp-btn { width: 100%; justify-content: center; max-width: 320px; }
  .lp-hero__trust   { gap: 24px; }
  .lp-final-cta__actions { flex-direction: column; align-items: center; }
  .lp-final-cta__actions .lp-btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .lp-gallery-strip { grid-template-columns: 1fr 1fr; }
  .lp-stats-strip   { grid-template-columns: 1fr; }
  .lp-stat-item     { border-right: none; border-top: 1px solid var(--lp-border); }
  .lp-stat-item:first-child { border-top: none; }
}
