/* ─────────────────────────────────────────────────────────────
   Landing Page (user-built) — public styling
   All styles prefixed with .lp- to avoid clashes with theme CSS.
   ───────────────────────────────────────────────────────────── */

.lp-body { margin:0; font-family: 'Helvetica Neue', Arial, sans-serif; color:#222; background:#fff; }
.lp-main { display:block; }

/* ── Containers / sections ───────────────────────────────── */
.lp-section { padding: 60px 20px; }
.lp-section-flush { padding: 0; }
.lp-container { max-width: 1200px; margin: 0 auto; }

/* ── Typography helpers ──────────────────────────────────── */
.lp-sec-title { font-size: 32px; font-weight: 700; margin: 0 0 12px; text-align: center; line-height: 1.2; }
.lp-sec-sub   { font-size: 17px; color: #666; margin: 0 auto 36px; max-width: 720px; text-align: center; line-height: 1.5; }
.lp-heading   { font-weight: 700; margin: 0 0 10px; line-height: 1.2; }
h2.lp-heading { font-size: 32px; }
h3.lp-heading { font-size: 26px; }
h4.lp-heading { font-size: 20px; }
.lp-h-sub     { color: #666; font-size: 16px; margin: 0; }

/* ── Text block ──────────────────────────────────────────── */
.lp-text { font-size: 16px; line-height: 1.7; color: var(--lp-text-color, #333); }
.lp-text p  { margin: 0 0 1em; color: inherit; }
.lp-text h2 { font-size: 28px; margin: 1em 0 0.5em; color: inherit; }
.lp-text h3 { font-size: 22px; margin: 1em 0 0.5em; color: inherit; }
.lp-text a  { color: var(--lp-link-color, #667eea); text-decoration: underline; }

/* ── Buttons ─────────────────────────────────────────────── */
.lp-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.lp-btn-lg { padding: 18px 36px; font-size: 17px; }
.lp-btn-outline { background: transparent !important; border: 2px solid; }

/* ── Hero ────────────────────────────────────────────────── */
.lp-hero {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
/* Background image lives in a dedicated layer so filter:blur() doesn't
   blur the foreground text/buttons. */
.lp-hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
.lp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.lp-hero-inner { max-width: 800px; width: 100%; position: relative; z-index: 2; }
.lp-hero-title { font-size: 56px; font-weight: 700; margin: 0 0 16px; line-height: 1.1; text-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.lp-hero-sub   { font-size: 22px; margin: 0 0 32px; opacity: 0.95; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.lp-hero-ctas  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CTA section ─────────────────────────────────────────── */
.lp-cta { padding: 80px 20px; }
.lp-cta-title { font-size: 36px; font-weight: 700; margin: 0 0 14px; }
.lp-cta-sub   { font-size: 18px; margin: 0 0 28px; opacity: 0.9; }

/* ── Grid layouts (cols) ─────────────────────────────────── */
.lp-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.lp-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .lp-cols-3, .lp-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-cols-2, .lp-cols-3, .lp-cols-4 { grid-template-columns: 1fr; }
  .lp-hero-title { font-size: 38px; }
  .lp-hero-sub   { font-size: 18px; }
  .lp-sec-title  { font-size: 26px; }
  .lp-section    { padding: 40px 16px; }
}

/* ── Features ────────────────────────────────────────────── */
.lp-feat-item { text-align: center; padding: 20px; }
.lp-feat-icon { font-size: 44px; margin-bottom: 16px; }
.lp-feat-item h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.lp-feat-item p  { color: #666; font-size: 15px; line-height: 1.5; margin: 0; }

/* ── Services ────────────────────────────────────────────── */
.lp-services { }
.lp-services-stack { display: flex; flex-direction: column; gap: 14px; }

.lp-svc-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

/* ── Padding presets ─────────────────────────────────────── */
.lp-svc-pad-sm .lp-svc-body { padding: 14px; }
.lp-svc-pad-md .lp-svc-body { padding: 20px; }
.lp-svc-pad-lg .lp-svc-body { padding: 28px; }

/* ── Shadow presets ──────────────────────────────────────── */
.lp-svc-shadow-none { box-shadow: none; }
.lp-svc-shadow-sm   { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lp-svc-shadow-md   { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.lp-svc-shadow-lg   { box-shadow: 0 10px 28px rgba(0,0,0,0.12); }

/* ── Hover effects ───────────────────────────────────────── */
.lp-svc-hover-none:hover { }
.lp-svc-hover-lift:hover   { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.lp-svc-hover-scale:hover  { transform: scale(1.03); }
.lp-svc-hover-shadow:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.15); }
.lp-svc-hover-border:hover { border-color: #667eea; box-shadow: 0 0 0 2px rgba(102,126,234,0.15); }

/* ── Image ───────────────────────────────────────────────── */
.lp-svc-img {
  background-size: cover;
  background-position: center;
  background-color: #f8f9fa;
}

/* ── Layout: card (image top, content below) ─────────────── */
.lp-svc-layout-card { display: flex; flex-direction: column; }

/* ── Layout: horizontal (image left, content right) ──────── */
.lp-svc-layout-horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
}
.lp-svc-layout-horizontal .lp-svc-img { height: auto !important; min-height: 140px; }
.lp-svc-layout-horizontal .lp-svc-body { display: flex; flex-direction: column; }
@media (max-width: 600px) {
  .lp-svc-layout-horizontal { grid-template-columns: 1fr; }
  .lp-svc-layout-horizontal .lp-svc-img { height: 160px !important; }
}

/* ── Layout: list (horizontal stack, compact, no image) ──── */
.lp-svc-layout-list {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px !important;
}
.lp-svc-layout-list .lp-svc-body { padding: 0 !important; display: contents; }
.lp-svc-layout-list .lp-svc-name { margin: 0; grid-column: 1; }
.lp-svc-layout-list .lp-svc-desc { grid-column: 1; grid-row: 2; margin: 2px 0 0; }
.lp-svc-layout-list .lp-svc-meta { display: contents; }
.lp-svc-layout-list .lp-svc-price { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.lp-svc-layout-list .lp-svc-dur   { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
.lp-svc-layout-list .lp-svc-book  { grid-column: 4; grid-row: 1 / span 2; align-self: center; }
@media (max-width: 600px) {
  .lp-svc-layout-list { grid-template-columns: 1fr auto; }
  .lp-svc-layout-list .lp-svc-dur { display: none; }
  .lp-svc-layout-list .lp-svc-book { grid-column: 1 / span 2; grid-row: 3; justify-self: start; }
}

/* ── Layout: minimal (text only, no card chrome) ─────────── */
.lp-svc-layout-minimal {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid #eef0f4 !important;
}
.lp-svc-layout-minimal .lp-svc-body { padding: 0 !important; display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.lp-svc-layout-minimal .lp-svc-name { flex: 1; min-width: 60%; }
.lp-svc-layout-minimal .lp-svc-meta { display: flex; gap: 14px; align-items: baseline; }
.lp-svc-layout-minimal:hover { transform: none; box-shadow: none; border-color: transparent; border-bottom-color: #667eea !important; }

/* ── Typography (defaults — overridable via inline style) ─ */
.lp-svc-name { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: #222; }
.lp-svc-desc { color: #666; font-size: 14px; line-height: 1.5; margin: 0 0 14px; }
.lp-svc-meta { display: flex; justify-content: space-between; align-items: center; font-size: 14px; gap: 10px; flex-wrap: wrap; }
.lp-svc-price { color: #667eea; font-size: 18px; font-weight: 700; white-space: nowrap; }
.lp-svc-dur   { color: #888; white-space: nowrap; }

/* ── Per-card book button ────────────────────────────────── */
.lp-svc-book {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: #667eea;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.lp-svc-book:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* ── Workers ─────────────────────────────────────────────── */
.lp-wkr-card { text-align: center; padding: 20px; }
.lp-wkr-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.lp-wkr-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -10px rgba(15,23,42,0.18);
  background: #fff;
}
.lp-wkr-avatar {
  width: 140px; height: 140px; margin: 0 auto 16px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.lp-wkr-placeholder { font-size: 54px; font-weight: 700; color: #999; background: linear-gradient(135deg,#667eea,#764ba2); color:#fff; }
.lp-wkr-name { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.lp-wkr-bio  { font-size: 14px; color: #666; margin: 0; line-height: 1.5; }

/* ── Reviews ─────────────────────────────────────────────── */
.lp-reviews.lp-layout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.lp-reviews.lp-layout-carousel { display: flex; overflow-x: auto; gap: 20px; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.lp-reviews.lp-layout-carousel .lp-rev-card { min-width: 300px; scroll-snap-align: start; }
.lp-rev-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eef0f4;
}
.lp-rev-stars { color: #f59e0b; font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.lp-rev-text  { font-size: 15px; line-height: 1.6; color: #333; font-style: italic; margin: 0 0 14px; }
.lp-rev-name  { color: #666; font-size: 14px; font-weight: 600; }

/* ── Opening hours ───────────────────────────────────────── */
.lp-opening-hours { background: #f8f9fb; border-radius: 12px; padding: 20px 24px; }
.lp-oh-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eef0f4; font-size: 15px; }
.lp-oh-row:last-child { border-bottom: none; }
.lp-oh-day  { font-weight: 600; color: #222; }
.lp-oh-time { color: #555; font-variant-numeric: tabular-nums; }
.lp-opening-hours.lp-layout-compact .lp-oh-row { padding: 6px 0; font-size: 14px; }

/* ── Contact ─────────────────────────────────────────────── */
.lp-contact-item { text-align: center; padding: 24px; background: #f8f9fb; border-radius: 12px; }
.lp-contact-icon { font-size: 28px; color: #667eea; margin-bottom: 12px; }
.lp-contact-label { font-weight: 700; color: #222; margin-bottom: 6px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-contact-val { color: #333; font-size: 15px; line-height: 1.5; }
.lp-contact-val a { color: #667eea; text-decoration: none; }

/* ── Image caption ───────────────────────────────────────── */
.lp-img-caption { color: #888; font-size: 13px; font-style: italic; margin: 12px 0 0; }

/* ── Gallery ─────────────────────────────────────────────── */
.lp-gallery { display: grid; gap: 12px; }
.lp-gal-item { position: relative; overflow: hidden; }
.lp-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-gal-cap { font-size: 13px; color: #888; padding: 6px 0; text-align: center; }

/* ── Video ───────────────────────────────────────────────── */
.lp-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; }
.lp-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Social ──────────────────────────────────────────────── */
.lp-socials { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.lp-social:hover { transform: scale(1.1); }

/* ── Columns block ───────────────────────────────────────── */
.lp-col-title { font-size: 22px; font-weight: 700; margin: 0 0 10px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.lp-faq-item {
  background: #f8f9fb;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.lp-faq-q { font-weight: 600; font-size: 16px; color: #222; cursor: pointer; outline: none; }
.lp-faq-q::marker { color: #667eea; }
.lp-faq-a { padding-top: 12px; color: #555; font-size: 15px; line-height: 1.6; }
