/* =========================================
   FOREVER BRACELET — Landing Page Stylesheet
   lp-hu.html / lp-en.html
   ========================================= */

/* ---- TOKENS ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9A7C2E;
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --dark-mid:    #242424;
  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #666;
  --text-light:  rgba(255,255,255,0.75);
  --radius:      4px;
  --radius-lg:   10px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lift: 0 8px 32px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- READING PROGRESS BAR ---- */
.lp-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---- NAV ---- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.lp-nav__logo {
  display: flex;
  align-items: center;
}

.lp-nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.lp-nav__logo span {
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.lp-btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
}

.lp-btn--gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 4px 24px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}

.lp-btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.lp-btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lp-btn--sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.lp-btn--lg {
  padding: 16px 32px;
  font-size: 0.9rem;
}

.lp-btn--block {
  display: flex;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.85rem;
}

.lp-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lp-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 500;
}

.lp-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.lp-btn--outline-dark {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.18);
  font-weight: 500;
}

.lp-btn--outline-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

/* ---- LAYOUT HELPERS ---- */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-container--narrow {
  max-width: 860px;
}

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

.lp-section--white  { background: var(--white); }
.lp-section--cream  { background: var(--cream); }
.lp-section--dark   { background: var(--dark); }
.lp-section--black  { background: var(--black); }

/* ---- DARK SECTION — ambient gold glow (all dark/black sections) ---- */
.lp-section--dark,
.lp-section--black {
  position: relative;
  overflow: hidden;
}

.lp-section--dark::before,
.lp-section--black::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: dark-glow-shift 12s ease-in-out infinite alternate;
}

@keyframes dark-glow-shift {
  0%   { opacity: 1;    transform: scale(1) translate(0, 0); }
  100% { opacity: 0.75; transform: scale(1.06) translate(12px, -8px); }
}

.lp-section--dark > *,
.lp-section--black > * {
  position: relative;
  z-index: 1;
}

/* ---- TYPOGRAPHY ---- */
.lp-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.lp-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.lp-title--center { text-align: center; }

.lp-title--light {
  color: var(--white);
}

.lp-title--light em {
  color: var(--gold-light);
}

.lp-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.lp-eyebrow__line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ---- HERO ---- */
.lp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.lp-hero__media {
  position: absolute;
  inset: 0;
}

.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: fekvő videó látszik, álló rejtve */
.lp-hero__video--mobile  { display: none; }
.lp-hero__video--desktop { display: block; }

/* Mobil: álló videó látszik, fekvő rejtve */
@media (max-width: 640px) {
  .lp-hero__video--desktop { display: none; }
  .lp-hero__video--mobile  { display: block; }
}

.lp-hero__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0D0D0D 0%, #1A1410 50%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.45;
}

.lp-hero__placeholder-inner svg {
  width: 80px;
  height: 80px;
}

.lp-hero__placeholder-inner p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.55) 40%,
    rgba(13,13,13,0.7) 100%
  );
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
}

.lp-hero__content > * {
  max-width: 640px;
}

.lp-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.lp-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.lp-hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
}

.lp-hero__sub strong {
  color: var(--white);
  font-weight: 600;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.lp-hero__ctas-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.lp-hero__ctas-tertiary {
  margin-bottom: 28px;
  text-align: left;
}

.lp-hero__tertiary-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color var(--transition), border-color var(--transition);
  padding-bottom: 1px;
}

.lp-hero__tertiary-link:hover {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.35);
}

.lp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.lp-trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-trust-bar span svg {
  width: 14px;
  height: 14px;
}

.lp-trust-bar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
  margin: 0 12px;
}

.lp-trust-bar--centered {
  justify-content: center;
}

/* ============================================================
   STORIES — hero-ban lévő körök + modal
   ============================================================ */

/* --- Story circles row --- */
.lp-stories {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 12px;
}

@media (max-width: 639px) {
  .lp-stories {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    /* negative margin so circles reach edge, padding brings first one in */
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .lp-stories::-webkit-scrollbar { display: none; }
  .lp-story {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

.lp-story {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Gradient ring — outer wrapper */
.lp-story__ring {
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-size: 300% 300%;
  animation: story-ring-move 3s ease infinite;
  flex-shrink: 0;
}

@keyframes story-ring-move {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* White gap between ring and photo */
.lp-story__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111;
  border: 2.5px solid #0D0D0D;
  overflow: hidden;
  box-sizing: border-box;
}

/* Real photo when added */
.lp-story__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Placeholder initials */
.lp-story__ph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  user-select: none;
}

.lp-story__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

.lp-stories__hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

/* --- Modal backdrop --- */
.lp-story-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 900;
  backdrop-filter: blur(4px);
}

.lp-story-modal__backdrop[hidden] { display: none; }

/* --- Modal container --- */
.lp-story-modal {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-story-modal[hidden] { display: none; }

/* Mobile: __inner = full screen */
.lp-story-modal__inner {
  position: relative;
  width: 100%;
  height: 100dvh;
}

/* --- Close button (mobile: top right corner) --- */
.lp-story-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(4px);
}

.lp-story-modal__close svg {
  width: 20px;
  height: 20px;
}

/* --- Track: horizontal scroll snap --- */
.lp-story-modal__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lp-story-modal__track::-webkit-scrollbar { display: none; }

/* --- Individual slide --- */
.lp-story-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #000;
  position: relative;
}

.lp-story-slide__media {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Video or iframe fills the media area */
.lp-story-slide__media video,
.lp-story-slide__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.lp-story-slide__video {
  background: #000;
}

/* Placeholder until real video is added */
.lp-story-slide__ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
}

.lp-story-slide__ph svg {
  width: 64px;
  height: 64px;
}

/* Bottom footer with label + CTA */
.lp-story-slide__footer {
  padding: 20px 24px 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-story-slide__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  font-style: italic;
}

.lp-story-slide__cta {
  align-self: stretch;
  text-align: center;
}

/* --- Dot indicators --- */
.lp-story-modal__dots {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
  pointer-events: none;
}

.lp-story-modal__dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s;
}

.lp-story-modal__dot.is-active {
  background: #fff;
}

/* --- Arrows: hidden on mobile --- */
.lp-story-modal__arrow {
  display: none;
}

/* Desktop: phone-sized modal with arrows on the sides */
@media (min-width: 640px) {
  .lp-story-modal {
    gap: 24px;
  }

  /* __inner = phone-sized box */
  .lp-story-modal__inner {
    width: 390px;
    height: min(780px, 92dvh);
    flex-shrink: 0;
  }

  /* track & slides fill __inner */
  .lp-story-modal__track {
    border-radius: 20px;
  }

  /* X: sötét, jobb felső sarokra tapasztva */
  .lp-story-modal__close {
    top: -14px;
    right: -14px;
    background: rgba(255,255,255,0.9);
    color: #0d0d0d;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }

  /* Arrows: visible on desktop */
  .lp-story-modal__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .lp-story-modal__arrow:hover {
    background: rgba(255,255,255,0.25);
  }

  .lp-story-modal__arrow:disabled {
    opacity: 0.2;
    cursor: default;
  }

  .lp-story-modal__arrow svg {
    width: 24px;
    height: 24px;
  }
}

.lp-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: hero-scroll-pulse 2s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ---- PROOF STRIP ---- */
.lp-proof-strip {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 40px 0;
}

.lp-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.lp-proof-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(201,168,76,0.12);
}

.lp-proof-item:last-child { border-right: none; }

.lp-proof-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.lp-proof-item__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- PROBLEM SECTION ---- */
.lp-problem .lp-container--narrow {
  padding-top: 0;
}

.lp-problem__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 40px 0;
}

.lp-problem__vs {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  align-self: center;
}

.lp-problem__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-problem__card--bad {
  background: #f8f4f4;
  border: 1px solid #e8d8d8;
}

.lp-problem__card--good {
  background: linear-gradient(135deg, #faf7ee 0%, #f5efd6 100%);
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 4px 24px rgba(201,168,76,0.12);
}

.lp-problem__card-img {
  width: 100%;
  overflow: hidden;
}

.lp-problem__card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.lp-problem__card-img-ph {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.3);
}

.lp-problem__card-img-ph--bad {
  background: linear-gradient(145deg, #ede4e4, #ddd4d4);
}

.lp-problem__card-img-ph--good {
  background: linear-gradient(145deg, #f0e8cc, #e4d8a8);
}

.lp-problem__card-body {
  padding: 28px 28px 32px;
}

.lp-problem__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}

.lp-problem__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-problem__card li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.lp-problem__card--bad li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #cc6666;
}

.lp-problem__card--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
}

.lp-problem__punch {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  padding: 24px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.lp-problem__punch em {
  color: var(--gold-dark);
  font-weight: 500;
}

/* ---- REVIEWS ---- */
/* TripAdvisor live badge */
.lp-ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0faf5;
  color: #00803f;
  border: 1px solid #a8dfc4;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px 6px 6px;
  margin: 0 auto 24px;
  max-width: 100%;
}

.lp-ta-badge__owl {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.lp-ta-badge__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  line-height: 1.5;
}

.lp-ta-badge__item {
  white-space: nowrap;
}

.lp-ta-badge__sep {
  opacity: 0.5;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .lp-ta-badge {
    border-radius: 16px;
    padding: 8px 14px 8px 8px;
  }
  .lp-ta-badge__sep {
    display: none;
  }
  .lp-ta-badge__items {
    gap: 2px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-ta-badge__item::before {
    content: '· ';
    opacity: 0.5;
  }
  .lp-ta-badge__item:first-child::before {
    content: '';
  }
}

.lp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Mobil: vízszintes scroll */
@media (max-width: 768px) {
  .lp-reviews__grid--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: calc(-1 * var(--container-pad, 24px));
    margin-right: calc(-1 * var(--container-pad, 24px));
    padding-left: var(--container-pad, 24px);
    padding-right: var(--container-pad, 24px);
  }
  .lp-reviews__grid--scroll::-webkit-scrollbar { display: none; }
  .lp-reviews__grid--scroll .lp-review-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}

.lp-review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- DARK REVIEWS — premium glass + gold accent ---- */

.lp-review-card--dark {
  background: rgba(30, 27, 22, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201,168,76,0.18);
  border-top: 1px solid rgba(201,168,76,0.35);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.12) inset,
    0 24px 48px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,0.61,0.36,1);
}

.lp-review-card--dark:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.18) inset,
    0 32px 64px rgba(0,0,0,0.55),
    0 0 32px rgba(201,168,76,0.08);
}

.lp-review-card--img {
  padding: 0;
  overflow: hidden;
}

.lp-review-card__img-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  flex-shrink: 0;
}

.lp-review-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  display: block;
}

.lp-review-card--img .lp-review-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px 22px;
}

.lp-review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.lp-review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.lp-review-card--dark .lp-review-card__text {
  color: rgba(255,255,255,0.65);
}

.lp-review-card__author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.lp-review-card--dark .lp-review-card__author-row {
  border-top-color: rgba(255,255,255,0.06);
}

.lp-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.lp-review-card__avatar--dark {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.35));
  color: var(--gold-light);
}

.lp-review-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.lp-review-card--dark .lp-review-card__name {
  color: var(--white);
}

.lp-review-card__meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.lp-review-card--dark .lp-review-card__meta {
  color: rgba(255,255,255,0.4);
}

.lp-reviews__grid--dark .lp-review-card {
  background: rgba(30, 27, 22, 0.6);
  border-color: rgba(201,168,76,0.18);
}

@media (max-width: 768px) {
  .lp-reviews__grid--dark.lp-reviews__grid--scroll .lp-review-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }
}

/* Gold shimmer line at top of card image */
.lp-review-card--dark .lp-review-card__img {
  position: relative;
}

.lp-review-card--dark .lp-review-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(13,13,13,0.7), transparent);
  pointer-events: none;
}

.lp-reviews-more__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ---- PROCESS ---- */
.lp-process__sub {
  text-align: center;
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

.lp-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.lp-process__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-process__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 12px 32px rgba(0,0,0,0.4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-process__img-wrap:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.08);
}

.lp-process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lp-process__img-wrap--video {
  aspect-ratio: 9 / 16;
}

.lp-process__yt {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.lp-process__img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.lp-process__img-placeholder svg {
  width: 32px;
  height: 32px;
}

.lp-process__img-placeholder--gold {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
  color: rgba(201,168,76,0.5);
}

.lp-process__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
}

.lp-process__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.lp-process__desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.lp-process__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

/* ---- MATERIAL SECTION ---- */
.lp-material__intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-material__visual-wrap {
  margin-bottom: 48px;
}

.lp-material__svg {
  width: 100%;
  max-width: 840px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
}

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

.lp-material__card {
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-material__card--muted {
  background: #fafafa;
  border-color: #e8e0e0;
  opacity: 0.85;
}

.lp-material__card--gold {
  background: linear-gradient(160deg, #fdf9ee 0%, #f7eecc 100%);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 4px 24px rgba(201,168,76,0.14);
  transform: translateY(-4px);
}

.lp-material__card--silver {
  background: #f8f9fb;
  border-color: #d0d8e4;
}

.lp-material__card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f0e8e8;
  color: #aa4444;
  align-self: flex-start;
}

.lp-material__card-badge--gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
}

.lp-material__card-badge--silver {
  background: rgba(100,120,160,0.12);
  color: #4a6090;
}

.lp-material__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

.lp-material__card-title span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.lp-material__card-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.lp-material__card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.lp-material__card-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.lp-material__card-list--good {
  color: var(--text) !important;
}

.lp-material__card-list--good::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.lp-material__card-list--bad::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #cc4444;
  font-weight: 700;
}

.lp-material__footnote {
  margin-top: 32px;
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(201,168,76,0.06), rgba(201,168,76,0.03));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- CHAIN STYLES GALLERY ---- */
.lp-gallery__sub {
  text-align: center;
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-gallery__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 32px;
  flex-wrap: wrap;
}

.lp-gallery__tab {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.lp-gallery__tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.lp-gallery__tab.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.lp-gallery__carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.lp-gallery__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.lp-gallery__track:active {
  cursor: grabbing;
}

.lp-gallery__slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.lp-gallery__slide[hidden] {
  display: none;
}

.lp-gallery__img {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}

.lp-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-gallery__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: linear-gradient(145deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
}

.lp-gallery__slide-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.lp-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.lp-gallery__arrow:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.lp-gallery__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.lp-gallery__arrow svg {
  width: 20px;
  height: 20px;
}

.lp-gallery__arrow--prev { left: 32px; }
.lp-gallery__arrow--next { right: 32px; }

.lp-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.lp-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-gallery__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---- SECTION BACKGROUND IMAGES ---- */
.lp-section--bg {
  position: relative;
  overflow: hidden;
}

.lp-section--bg > .lp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-section--bg > .lp-bg img,
.lp-section--bg > .lp-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-section--bg > .lp-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* Dark overlay (for light text sections) */
.lp-bg--dark::after {
  background: rgba(13,13,13,0.7);
}

/* Darker overlay */
.lp-bg--darker::after {
  background: rgba(13,13,13,0.82);
}

/* Light overlay (for dark text sections) */
.lp-bg--light::after {
  background: rgba(250,248,245,0.85);
}

/* Gold tinted overlay */
.lp-bg--gold::after {
  background: linear-gradient(180deg, rgba(13,13,13,0.75), rgba(13,13,13,0.6));
}

.lp-section--bg > .lp-container,
.lp-section--bg > .lp-cta-final__inner,
.lp-section--bg > div {
  position: relative;
  z-index: 1;
}

/* ---- VIDEO BLOCK ---- */
.lp-video-block__frame {
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.lp-video-block__yt {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.lp-video-block__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.lp-video-block__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lp-video-block__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.lp-video-block__placeholder p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.lp-video-block__placeholder span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.lp-video-block__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---- OCCASIONS ---- */
.lp-occ__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .lp-occ__grid--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: calc(-1 * var(--container-pad, 24px));
    margin-right: calc(-1 * var(--container-pad, 24px));
    padding-left: var(--container-pad, 24px);
    padding-right: var(--container-pad, 24px);
  }
  .lp-occ__grid--scroll::-webkit-scrollbar { display: none; }
  .lp-occ__grid--scroll .lp-occ__card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}

.lp-occ__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.lp-occ__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(201,168,76,0.25);
}

.lp-occ__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lp-occ__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lp-occ__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e4dc, #d8d0c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

.lp-occ__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.lp-occ__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}

.lp-occ__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.lp-occ__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  align-self: flex-start;
  margin-top: 4px;
}

/* ---- GUARANTEE ---- */
.lp-guarantee__sub,
.lp-guarantee__note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

.lp-guarantee__sub { margin-bottom: 48px; }
.lp-guarantee__note { margin-top: 32px; font-size: 0.8rem; }

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

.lp-g-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-g-card--gold {
  background: linear-gradient(160deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.3);
}

.lp-g-card--silver {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.lp-g-card__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lp-g-card__glow--silver {
  background: radial-gradient(circle, rgba(200,210,230,0.08) 0%, transparent 70%);
}

.lp-g-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-g-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-g-card__icon svg {
  width: 22px;
  height: 22px;
}

.lp-g-card__icon--gold {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
}

.lp-g-card__icon--gold svg { stroke: var(--gold); }

.lp-g-card__icon--silver {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.lp-g-card__icon--silver svg { stroke: rgba(200,210,230,0.8); }

.lp-g-card__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.lp-g-card__brand--silver {
  color: rgba(200,215,235,0.9);
}

.lp-g-card__type {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.lp-g-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.lp-g-card__footer {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: auto;
}

.lp-g-card__footer--silver {
  border-top-color: rgba(255,255,255,0.06);
}

.lp-g-card__duration {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.lp-g-card__duration--silver {
  color: rgba(200,215,235,0.8);
}

.lp-g-card__footer-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ---- PRICING ---- */
.lp-pricing__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Featured couples offer */
.lp-pricing__featured {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.1);
  overflow: hidden;
}

/* Image at the top */
.lp-pricing__featured-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.lp-pricing__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.15);
}

.lp-pricing__featured-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ede8dc, #e0d8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* Content below image */
.lp-pricing__featured-content {
  position: relative;
  padding: 32px 40px 36px;
}

.lp-pricing__featured-content::before { display: none; }

.lp-pricing__featured-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lp-pricing__featured-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.lp-pricing__featured-badge--hot {
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.35);
}

.lp-pricing__featured-badge--limited {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.1);
}

.lp-pricing__featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.lp-pricing__featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.lp-pricing__featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.lp-pricing__featured-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 420px;
}

.lp-pricing__featured-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-pricing__featured-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.lp-pricing__featured-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.lp-pricing__featured-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 200px;
}

.lp-pricing__featured-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-pricing__featured-price-old {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.55;
  white-space: nowrap;
}

.lp-pricing__featured-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  white-space: nowrap;
}

.lp-pricing__featured-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.lp-pricing__featured-right .lp-btn {
  width: 100%;
  justify-content: center;
}

.lp-pricing__featured-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
  line-height: 1.4;
}

.lp-pricing__table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-card);
}

.lp-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.lp-pricing__table thead tr {
  background: var(--black);
  color: var(--white);
}

.lp-pricing__table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-pricing__table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}

.lp-pricing__table tbody tr:last-child { border-bottom: none; }

.lp-pricing__table tbody tr:hover { background: rgba(201,168,76,0.04); }

.lp-pricing__table tbody td {
  padding: 16px 20px;
  color: var(--text);
  vertical-align: middle;
}

.lp-pricing__table tbody td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-pricing__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
}

.lp-pricing__price-old {
  display: block;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.lp-pricing__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
}

.lp-pricing__includes {
  margin-top: 28px;
  padding: 24px;
  background: rgba(201,168,76,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.15);
}

.lp-pricing__includes-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

.lp-pricing__includes-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
}

.lp-pricing__includes-grid svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- CHAIN VIDEO CTA ---- */
.lp-chain-cta {
  margin-top: 48px;
  text-align: center;
}

.lp-chain-cta__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.lp-chain-cta__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-chain-cta__card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 220px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-align: center;
}

.lp-chain-cta__card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-3px);
}

.lp-chain-cta__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 4px;
}

.lp-chain-cta__card-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.lp-chain-cta__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
}

.lp-chain-cta__card-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-chain-cta__card-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---- CHAIN VIDEO MODAL ---- */
#chain-video-modal:not([hidden]) {
  display: flex;
}

.lp-chain-modal__inner {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  margin: 16px;
}

.lp-chain-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}

.lp-chain-modal__close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.lp-chain-modal__close svg { width: 18px; height: 18px; }

.lp-chain-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
}

.lp-chain-modal__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 55vh;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.lp-chain-modal__yt {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.lp-chain-modal__hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ---- FAQ ---- */
.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lp-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.lp-faq__item:last-child { border-bottom: none; }

.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}

.lp-faq__q:hover { background: rgba(201,168,76,0.04); }

.lp-faq__q[aria-expanded="true"] {
  background: rgba(201,168,76,0.06);
  color: var(--gold-dark);
}

.lp-faq__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  stroke: var(--gold);
}

.lp-faq__q[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.lp-faq__a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  background: rgba(201,168,76,0.03);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 24px;
}

.lp-faq__item.is-open .lp-faq__a {
  max-height: 300px;
  padding: 16px 24px 20px;
}

/* ---- SERVICE SELECTION (step 2) ---- */
.lp-loc-services__heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.lp-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  width: 100%;
}

.lp-svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.lp-svc-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lp-svc-card__tag {
  position: absolute;
  top: -1px; right: 12px;
  transform: translateY(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
  white-space: nowrap;
}

.lp-svc-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.lp-svc-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.lp-svc-card__duration {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .lp-loc-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- INLINE BOOKING WIDGET (inside locations section) ---- */
.lp-loc-widget {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lp-loc-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-loc-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lp-salonic-iframe {
  width: 100%;
  max-width: 1980px;
  height: 600px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  display: block;
  background: var(--white);
}

/* ---- LOCATIONS ---- */
.lp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0faf0;
  color: #2a7a2a;
  border: 1px solid #b6dcb6;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px 6px 10px;
  margin: 0 auto 20px;
  text-align: center;
}

.lp-live-badge--hero {
  background: rgba(255,255,255,0.08);
  color: #7edd7e;
  border-color: rgba(126,221,126,0.3);
  margin: 16px auto 32px;
}

.lp-live-badge--hero .lp-live-badge__dot {
  background: #7edd7e;
}

.lp-live-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a7a2a;
  flex-shrink: 0;
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

.lp-locations .lp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-locations__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.lp-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-loc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.07);
}

.lp-loc-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-loc-card__img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-loc-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.lp-loc-card__city {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(13,13,13,0.6);
  padding: 4px 10px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.lp-loc-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-loc-card__address {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lp-loc-card__contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.lp-loc-card__phone,
.lp-loc-card__maps {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.lp-loc-card__phone:hover,
.lp-loc-card__maps:hover { color: var(--gold-dark); }

.lp-loc-card__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-loc-card__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lp-loc-card__hours-row:last-child { border-bottom: none; }

.lp-loc-card__hours-row--closed span:last-child {
  color: var(--text-muted);
}

/* ---- FINAL CTA ---- */
.lp-cta-final {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.18) 0%, rgba(13,13,13,0) 70%), var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.lp-cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lp-cta-final__title {
  margin-bottom: 0;
}

.lp-cta-final__sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}

.lp-cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-cta-final__divider {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.lp-cta-final__btns-alt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---- BOOKING SECTION ---- */
.lp-booking__intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Choice cards */
.lp-booking__choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-booking__choices.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  position: absolute;
}

.lp-booking__choice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  width: 100%;
}

.lp-booking__choice:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.lp-booking__choice:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lp-booking__choice--voucher {
  border-style: dashed;
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, #fdfaf0, #faf6e4);
}

.lp-booking__choice--voucher:hover {
  border-style: solid;
  border-color: var(--gold);
  background: linear-gradient(135deg, #fdf8e8, #f8f0d0);
}

.lp-booking__choice-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-booking__choice-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
}

.lp-booking__choice-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-booking__choice-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
}

.lp-booking__choice-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.lp-booking__choice-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-booking__choice:hover .lp-booking__choice-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Widget area */
.lp-booking__widget-area {
  display: none;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* JS sets display:flex and then transitions opacity/transform */
.lp-booking__widget-area.is-visible {
  display: flex;
}

.lp-booking__widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 28px;
}

.lp-booking__back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.lp-booking__back:hover { color: var(--gold-dark); }

.lp-booking__back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lp-booking__widget-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.lp-booking__salonic-wrap {
  min-height: 400px;
  position: relative;
}

.lp-booking__salonic-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 300px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.lp-booking__spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- DIY HOME KIT ---- */
.lp-diy {
  border-top: 1px solid rgba(201,168,76,0.12);
}

.lp-diy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-diy__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-diy__text .lp-title {
  margin-bottom: 0;
}

.lp-diy__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-diy__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-diy__list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.lp-diy__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.lp-diy__visual {
  width: 100%;
}

.lp-diy__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.lp-diy__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-dark);
}

.lp-diy__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.lp-diy__img-placeholder p {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
  color: var(--text-muted);
}

.lp-diy__img-placeholder span {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---- HERO URGENCY ---- */
.lp-hero__urgency {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: -4px;
  text-align: center;
}

/* ---- NAV SECTION LINKS ---- */
.lp-nav__links {
  display: flex;
  gap: 28px;
}

.lp-nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.lp-nav__links a:hover {
  color: var(--gold-light);
}

/* ---- PRESS / TRUST LOGO STRIP ---- */
.lp-press-strip {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 48px 24px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 64px;
}

.lp-press-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-press-strip__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.lp-press-strip__logo:hover {
  opacity: 0.85;
}

/* When real logo images are used */
.lp-press-strip__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.lp-press-strip__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---- ABOUT / TRUST (RÓLUNK) ---- */
.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.lp-about__story .lp-title {
  margin-bottom: 24px;
}

.lp-gold {
  color: var(--gold-dark);
  font-style: inherit;
}

.lp-about__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.lp-about__text:last-child {
  margin-bottom: 0;
}

.lp-about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
}

.lp-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-about__photo-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #ede8dc, #ddd5c2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-radius: var(--radius-lg);
}

.lp-about__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin: 28px 0 32px;
  padding-left: 20px;
  border-left: 2px solid rgba(201,168,76,0.4);
}

.lp-about__signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-about__signature-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 4px;
  /* PNG-n fehér háttér van – mix-blend-mode multiply eltünteti a fehéret */
  mix-blend-mode: multiply;
}

.lp-about__signature-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.lp-about__signature-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
.lp-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 56px 0 0;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.lp-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.lp-footer__logo span { color: var(--gold); }

.lp-footer__tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.lp-footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lp-footer__social svg { width: 16px; height: 16px; }

.lp-footer__email {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.lp-footer__email:hover { color: var(--gold); }

.lp-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.lp-footer__loc-addr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.lp-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.lp-footer__hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  gap: 8px;
}

.lp-footer__closed span { color: rgba(255,255,255,0.2); }

.lp-footer__phone {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.lp-footer__phone:hover { color: var(--gold); }

.lp-footer__maps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.lp-footer__maps:hover { color: var(--gold); }

.lp-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-footer__nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.lp-footer__nav a:hover { color: var(--gold); }

.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

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

@media (max-width: 540px) {
  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---- EXIT INTENT POPUP ---- */
.lp-exit-intent {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-exit-intent.is-visible { display: flex; }

.lp-exit-intent__box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.25);
  padding: clamp(32px, 5vw, 52px);
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: lp-exit-slide 0.35s cubic-bezier(0.22,0.61,0.36,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

@keyframes lp-exit-slide {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-exit-intent__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.lp-exit-intent__close:hover { background: rgba(0,0,0,0.12); color: var(--black); }
.lp-exit-intent__close svg { width: 16px; height: 16px; }

.lp-exit-intent__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.lp-exit-intent__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.lp-exit-intent__title em {
  color: var(--gold-dark);
  font-style: italic;
}

.lp-exit-intent__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.lp-exit-intent__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.lp-exit-intent__skip {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(0,0,0,0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.lp-exit-intent__skip:hover { color: rgba(0,0,0,0.6); }

.lp-exit-intent__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
}

.lp-exit-intent__trust span:first-child {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ---- STICKY MOBILE BAR ---- */
.lp-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.2);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-sticky.is-visible {
  transform: translateY(0);
}

.lp-sticky__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-sticky__stars {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.lp-sticky__rating {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.lp-sticky__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-sticky__voucher {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color var(--transition);
  white-space: nowrap;
}

.lp-sticky__voucher:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .lp-proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-proof-item { border-bottom: 1px solid rgba(201,168,76,0.12); }
  .lp-proof-item:nth-child(2n) { border-right: none; }

  .lp-process__steps { grid-template-columns: repeat(2, 1fr); }

  .lp-material__grid { grid-template-columns: 1fr 1fr; }
  .lp-material__card--gold { transform: none; grid-column: 1 / -1; }
  .lp-occ__grid:not(.lp-occ__grid--scroll) { grid-template-columns: repeat(2, 1fr); }
  .lp-gallery__slide { flex: 0 0 calc(33.333% - 14px); }
  .lp-gallery__arrow--prev { left: 16px; }
  .lp-gallery__arrow--next { right: 16px; }
}

@media (max-width: 768px) {
  .lp-section { padding: 64px 0; }

  /* Centre all section headlines + eyebrows on mobile */
  .lp-label { text-align: center; justify-content: center; }
  .lp-title:not(.lp-title--center) { text-align: center; }
  .lp-about__story .lp-title,
  .lp-problem .lp-title,
  .lp-diy__text .lp-title { text-align: center; }

  .lp-nav__links { display: none; }

  .lp-hero__content { padding: 100px 24px 64px; }
  .lp-hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .lp-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-about__photo { order: -1; }
  .lp-about__photo-ph { aspect-ratio: 16 / 9; }
  .lp-press-strip__logos { gap: 40px; }
  .lp-press-strip__logo { font-size: 1.1rem; }
  .lp-press-strip { padding: 36px 24px; margin-bottom: 48px; }

  .lp-problem__card-img img,
  .lp-problem__card-img-ph { height: 180px; }

  .lp-problem__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-problem__vs {
    text-align: center;
    padding: 8px 0;
  }

  .lp-reviews__grid { grid-template-columns: 1fr; }

  /* Process: horizontal scroll on mobile */
  .lp-process { overflow: hidden; }
  .lp-process .lp-container { overflow: visible; }
  .lp-process__steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-top: 36px;
    padding-bottom: 20px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 28px;
    padding-right: 28px;
    scroll-padding-left: 28px;
    scrollbar-width: none;
  }
  .lp-process__steps::-webkit-scrollbar { display: none; }
  .lp-process__step {
    flex: 0 0 75vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  .lp-material__grid { grid-template-columns: 1fr; }
  .lp-material__card--gold { transform: none; }

  .lp-occ__grid:not(.lp-occ__grid--scroll) { grid-template-columns: 1fr 1fr; }

  .lp-guarantee__grid { grid-template-columns: 1fr; }

  .lp-pricing__table tbody td:first-child {
    display: table-cell;
  }

  .lp-pricing__includes-grid { grid-template-columns: 1fr; }
  .lp-pricing__featured-content { padding: 24px 24px 28px; }
  .lp-pricing__featured-img { height: 220px; }
  .lp-pricing__featured-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-pricing__featured-right { align-items: stretch; }
  .lp-pricing__featured-title { font-size: 1.6rem; }
  .lp-pricing__featured-price { font-size: 2rem; }

  .lp-locations__grid { grid-template-columns: 1fr; max-width: 480px; }

  .lp-hero__ctas { flex-direction: column; }
  .lp-hero__ctas-tertiary { text-align: center; }
  .lp-btn--lg { width: 100%; justify-content: center; }
  .lp-cta-final__btns { flex-direction: column; align-items: center; }
  .lp-cta-final__btns-alt { flex-direction: column; align-items: center; }
  .lp-diy__inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-diy__visual { order: -1; }
  .lp-gallery__slide { flex: 0 0 calc(50% - 10px); }
  .lp-gallery__arrow { width: 36px; height: 36px; }
  .lp-gallery__arrow--prev { left: 8px; }
  .lp-gallery__arrow--next { right: 8px; }
  .lp-gallery__arrow svg { width: 16px; height: 16px; }

  /* show sticky bar only on mobile */
  .lp-sticky { display: flex; }
}

@media (min-width: 769px) {
  .lp-sticky { display: none; }
}

@media (max-width: 480px) {
  .lp-proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-process__step { flex: 0 0 82vw; }
  .lp-occ__grid:not(.lp-occ__grid--scroll) { grid-template-columns: 1fr; }
  .lp-about__photo-ph { aspect-ratio: 4 / 3; }
  .lp-press-strip__logos { gap: 24px; }
  .lp-press-strip__logo { font-size: 0.9rem; }
  .lp-press-strip { padding: 28px 16px; margin-bottom: 40px; }

  .lp-pricing__table {
    font-size: 0.8rem;
  }

  .lp-pricing__table thead th,
  .lp-pricing__table tbody td {
    padding: 12px 12px;
  }

  .lp-trust-bar {
    gap: 8px;
  }

  .lp-trust-bar__sep {
    display: none;
  }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
