/**
 * Landing page – matches front_landing: elegant, out of the box, with animations.
 * Replace hero banner and logo via Blade or inline styles when assets are ready.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Theme: front_landing – Cormorant Garamond + Inter, rose palette */
:root {
  --lp-font-sans: 'Inter', system-ui, sans-serif;
  --lp-font-serif: 'Cormorant Garamond', Georgia, serif;
  --lp-ink: #1c1917;
  --lp-ink-soft: #44403c;
  --lp-muted: #57534e;
  --lp-cream: #fef7f9;
  --lp-cream-dark: #fce7ef;
  --lp-stone-50: #fafaf9;
  --lp-stone-100: #f5f5f4;
  --lp-stone-200: #e7e5e4;
  --lp-stone-300: #d6d3d1;
  --lp-stone-400: #a8a29e;
  --lp-stone-500: #78716c;
  --lp-rose-50: #fff1f2;
  --lp-rose-100: #ffe4e6;
  --lp-rose-200: #fecdd3;
  --lp-rose-400: #fb7185;
  --lp-rose-500: #f43f5e;
  --lp-rose-600: #e11d48;
  --lp-rose-700: #be185d;
  --lp-rose-800: #9d174d;
  --lp-rose-900: #881337;
  --lp-accent: #be185d;
  --lp-accent-light: #fb7185;
  --lp-white: #ffffff;
  --lp-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Front-landing utilities */
.paper-shadow {
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.05), 0 20px 60px -10px rgba(157, 23, 77, 0.08);
}
.luxury-border {
  border: 1px solid rgba(157, 23, 77, 0.15);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lp-cream); }
::-webkit-scrollbar-thumb { background: var(--lp-accent); border-radius: 10px; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Allow vertical scroll, prevent horizontal */
  overflow-x: hidden;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--lp-font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-ink);
  background: var(--lp-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ----- Floating petals (front_landing style) ----- */
.lp-petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Decorative layer inside main (scrolls with page content) */
  z-index: 5;
  pointer-events: none;
}
.lp-petal {
  position: absolute;
  width: 18px;
  height: 24px;
  background: var(--lp-rose-800);
  border-radius: 70% 0 50% 50%;
  /* Hide petals while waiting for delayed animation start */
  opacity: 0;
  filter: blur(0.3px);
  animation: lp-petal-float 25s linear infinite;
  animation-fill-mode: both;
  transform: translateY(-10vh) translateX(0) rotate(0deg);
}
.lp-petal:nth-child(1) { left: 5%;  animation-delay: 0s;    animation-duration: 22s; width: 14px; height: 18px; }
.lp-petal:nth-child(2) { left: 18%; animation-delay: 3s;   animation-duration: 28s; width: 22px; height: 28px; }
.lp-petal:nth-child(3) { left: 32%; animation-delay: 7s;   animation-duration: 24s; }
.lp-petal:nth-child(4) { left: 55%; animation-delay: 2s;   animation-duration: 30s; width: 16px; height: 22px; }
.lp-petal:nth-child(5) { left: 72%; animation-delay: 11s;  animation-duration: 26s; width: 20px; height: 26px; }
.lp-petal:nth-child(6) { left: 88%; animation-delay: 5s;   animation-duration: 23s; width: 12px; height: 16px; }
.lp-petal:nth-child(7) { left: 42%; animation-delay: 15s;  animation-duration: 27s; }
.lp-petal:nth-child(8) { left: 65%; animation-delay: 8s;   animation-duration: 21s; width: 18px; height: 24px; }
.lp-petal:nth-child(9) { left: 25%; animation-delay: 12s;  animation-duration: 29s; width: 14px; height: 18px; }
.lp-petal:nth-child(10){ left: 78%; animation-delay: 4s;   animation-duration: 25s; }
@keyframes lp-petal-float {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg);   opacity: 0; }
  5%   { opacity: 0.12; }
  95%  { opacity: 0.12; }
  100% { transform: translateY(110vh) translateX(20px) rotate(360deg); opacity: 0; }
}

/* ----- Nav ----- */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
}

.lp-nav-bar {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: background 0.5s var(--lp-ease-out-expo), box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.lp-nav.scrolled .lp-nav-bar {
  background: rgba(254, 247, 249, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(190, 24, 93, 0.08);
}

.lp-nav-brand,
.lp-nav-links,
.lp-nav-mobile-toggle {
  position: relative;
  z-index: 1;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.lp-nav-logo {
  display: block;
  height: 5.25rem;
  width: auto;
  object-fit: contain;
  opacity: 0;
  animation: lp-fade-down 0.8s var(--lp-ease-out-expo) 0.2s forwards;
}

.lp-nav-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lp-font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  opacity: 0;
  animation: lp-fade-down 0.8s var(--lp-ease-out-expo) 0.2s forwards;
}
.lp-nav-logo-placeholder span:last-child { font-weight: 600; font-style: italic; color: var(--lp-rose-800); }
.lp-nav-heart {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--lp-rose-800);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.lp-nav-brand:hover .lp-nav-heart { transform: scale(1.1); }

.lp-nav.scrolled .lp-nav-logo-placeholder { color: var(--lp-ink); }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lp-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--lp-ink);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.lp-nav a:hover { opacity: 0.85; }

.lp-nav .lp-btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-white);
  background: var(--lp-accent);
  border: 1.5px solid var(--lp-accent);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.lp-nav .lp-btn:hover {
  background: var(--lp-rose-800);
  border-color: var(--lp-rose-800);
  color: var(--lp-white);
  transform: translateY(-1px);
}

.lp-nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  color: var(--lp-ink);
  cursor: pointer;
}
.lp-nav-mobile-toggle svg { width: 24px; height: 24px; }

.lp-nav-close {
  display: none;
}
@media (max-width: 767px) {
  .lp-nav-mobile-toggle { display: flex; }
  .lp-nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem 1rem;
    background: var(--lp-white);
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--lp-ink);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .lp-nav-close:hover { opacity: 0.85; }
  .lp-nav-close svg { width: 22px; height: 22px; flex-shrink: 0; }
  .lp-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 100vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 5rem 2rem 2rem;
    padding-top: 4.5rem;
    background: var(--lp-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.4s var(--lp-ease-out-expo);
    z-index: 99;
  }
  .lp-nav-open .lp-nav-links { transform: translateX(0); }
  .lp-nav-links a {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--lp-stone-100);
  }
  .lp-nav-links .lp-btn { margin-top: 1rem; text-align: center; }
}

/* ----- Hero: light rose gradient (demo-inspired) ----- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Banner: set background-image in Blade when you have the asset */
  background-color: var(--lp-rose-50);
  background-image: linear-gradient(160deg, var(--lp-rose-50) 0%, var(--lp-rose-100) 35%, #fdf2f4 60%, var(--lp-cream) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(254, 205, 211, 0.15) 100%);
  pointer-events: none;
}

/* Decorative blurs (front_landing) */
.lp-hero-blur {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.lp-hero-blur--center {
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  margin: -60vh -60vw 0 0;
  background: rgba(255, 241, 242, 0.5);
  border-radius: 50%;
  filter: blur(120px);
}
.lp-hero-blur--right {
  top: 0;
  right: 0;
  width: 40vw;
  height: 40vw;
  background: var(--lp-white);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  padding-top: max(8rem, 2rem + env(safe-area-inset-top));
  max-width: 64rem;
  margin: 0 auto;
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  background: var(--lp-rose-100);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-ink-soft);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: lp-fade-up 1s var(--lp-ease-out-expo) 0.4s forwards;
}
.lp-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-rose-700);
  animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.lp-hero-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(28px);
  animation: lp-fade-up 1s var(--lp-ease-out-expo) 0.55s forwards;
}
.lp-hero-title .lp-hero-title-accent { font-style: italic; font-weight: 300; color: var(--lp-rose-800); }

.lp-hero-lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--lp-ink-soft);
  margin: 0 auto 3rem;
  max-width: 32rem;
  opacity: 0;
  transform: translateY(24px);
  animation: lp-fade-up 1s var(--lp-ease-out-expo) 0.7s forwards;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: lp-fade-up 1s var(--lp-ease-out-expo) 0.85s forwards;
}

.lp-btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--lp-font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--lp-white);
  background: var(--lp-rose-800);
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px -5px rgba(157, 23, 77, 0.2);
  transition: background 0.5s ease, transform 0.2s ease;
}
.lp-btn-hero:hover {
  background: var(--lp-ink);
  transform: translateY(-2px);
}
.lp-btn-hero svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.lp-btn-hero:hover svg { transform: translateX(4px); }

.lp-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--lp-font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--lp-ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--lp-rose-100);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lp-btn-hero-outline:hover { border-color: var(--lp-rose-800); background: rgba(255,255,255,0.8); }
.lp-btn-hero-outline svg { width: 18px; height: 18px; }

/* Decorative line under CTA */
.lp-hero-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-accent-light), transparent);
  opacity: 0.5;
  margin: 2.5rem auto 0;
  opacity: 0;
  animation: lp-line-grow 1.2s var(--lp-ease-out-expo) 1.1s forwards;
}

@keyframes lp-line-grow {
  to {
    width: 8rem;
    opacity: 0.5;
  }
}

.lp-hero-contact {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--lp-ink-soft);
}
.lp-hero-contact a {
  color: var(--lp-rose-700);
  text-decoration: none;
}
.lp-hero-contact a:hover { text-decoration: underline; }
.lp-hero-contact-sep {
  margin: 0 0.5rem;
  color: var(--lp-stone-400);
}

@keyframes lp-fade-up {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lp-fade-down {
  to { opacity: 1; }
}

/* ----- Section: one line + CTA ----- */
.lp-section {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--lp-cream);
}

.lp-section-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.lp-section-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--lp-ink);
  margin: 0 0 1.5rem;
}

.lp-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent);
  background: transparent;
  border: 1.5px solid var(--lp-accent);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.lp-section-cta:hover {
  background: var(--lp-accent);
  color: var(--lp-white);
  border-color: var(--lp-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 24, 93, 0.25);
}

/* ----- Features (front_landing) ----- */
.lp-features {
  padding: 6rem 1.5rem;
  background: rgba(255, 228, 230, 0.5);
  position: relative;
  overflow: hidden;
}
.lp-features-inner { max-width: 1280px; margin: 0 auto; }
.lp-features-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
}
@media (max-width: 1023px) {
  .lp-features-head { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
}
.lp-features-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-rose-800);
  margin-bottom: 1rem;
}
.lp-features-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--lp-ink);
  margin: 0;
}
.lp-features-title em { font-style: italic; font-weight: 300; color: var(--lp-muted); }
.lp-features-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--lp-ink-soft);
  margin: 0;
  max-width: 28rem;
  padding-bottom: 0.5rem;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .lp-features-grid { grid-template-columns: 1fr; } }
.lp-feature-card {
  padding: 3rem;
  background: var(--lp-white);
  border: 1px solid var(--lp-rose-50);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.lp-feature-card:hover {
  border-color: rgba(251, 113, 133, 0.3);
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.05), 0 20px 60px -10px rgba(157, 23, 77, 0.08);
}
.lp-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--lp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.5s ease, transform 0.5s ease;
}
.lp-feature-card:hover .lp-feature-icon {
  background: var(--lp-rose-800);
  transform: scale(1.1);
}
.lp-feature-icon svg { width: 24px; height: 24px; color: var(--lp-rose-700); transition: color 0.5s ease; }
.lp-feature-card:hover .lp-feature-icon svg { color: var(--lp-white); }
.lp-feature-card h3 {
  font-family: var(--lp-font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lp-ink);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lp-feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--lp-ink-soft);
  margin: 0;
}

/* ----- Occasions (front_landing) ----- */
.lp-occasions {
  padding: 6rem 1.5rem;
  background: var(--lp-cream);
}
.lp-occasions-inner { max-width: 1280px; margin: 0 auto; }
.lp-occasions-layout {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .lp-occasions-layout { flex-direction: column; gap: 3rem; }
}
.lp-occasions-left { flex: 0 0 42%; }
@media (max-width: 1023px) { .lp-occasions-left { width: 100%; } }
.lp-occasions-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.85;
  color: var(--lp-ink);
  margin: 0 0 3rem;
}
.lp-occasions-title em { font-style: italic; color: var(--lp-rose-800); }
.lp-occasions-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 3rem;
}
.lp-occasions-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  font-family: var(--lp-font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.7s ease, color 0.7s ease;
  color: var(--lp-muted);
}
.lp-occasions-tab:hover { background: rgba(255,255,255,0.5); color: var(--lp-ink); }
.lp-occasions-tab.is-active {
  background: var(--lp-white);
  color: var(--lp-ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--lp-rose-50);
}
.lp-occasions-tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-stone-300);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: background 0.7s ease, transform 0.7s ease;
}
.lp-occasions-tab.is-active .lp-occasions-tab-dot {
  background: var(--lp-rose-800);
  transform: scale(2);
}
.lp-occasions-desc {
  padding-left: 2rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--lp-ink-soft);
  font-style: italic;
  margin: 0 0 2rem;
  max-width: 24rem;
}
.lp-occasions-link {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lp-rose-800);
  text-decoration: none;
  border-bottom: 2px solid rgba(157, 23, 77, 0.1);
  padding-bottom: 0.5rem;
  margin-left: 2rem;
  transition: border-color 0.3s ease;
}
.lp-occasions-link:hover { border-bottom-color: var(--lp-rose-800); }
.lp-occasions-right { flex: 1; position: relative; min-width: 0; }
.lp-occasions-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 220px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.05), 0 20px 60px -10px rgba(157, 23, 77, 0.08);
  border: 12px solid var(--lp-white);
  background: var(--lp-rose-100);
}
.lp-occasions-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 1s ease;
}
.lp-occasions-image-wrap:hover img { filter: grayscale(0); }
.lp-occasions-coming-soon {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: var(--lp-rose-100);
  font-family: var(--lp-font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lp-ink-soft);
}
.lp-occasions-coming-soon[aria-hidden="false"] {
  display: flex;
}
.lp-occasions-panel { display: none; }
.lp-occasions-panel.is-active { display: block; }
.lp-occasions-panel.is-active .lp-occasions-desc { animation: lp-fade-in 0.5s ease; }
@keyframes lp-fade-in { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

/* ----- Process (front_landing) ----- */
.lp-process {
  padding: 6rem 1.5rem;
  background: var(--lp-stone-50);
  position: relative;
  overflow: hidden;
}
.lp-process-inner { max-width: 1280px; margin: 0 auto; }
.lp-process-head { text-align: center; margin-bottom: 6rem; }
.lp-process-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-rose-800);
  margin-bottom: 1rem;
}
.lp-process-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--lp-ink);
  margin: 0;
}
.lp-process-title em { font-style: italic; color: var(--lp-stone-400); }
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  position: relative;
}
@media (max-width: 1023px) { .lp-process-grid { grid-template-columns: 1fr; gap: 3rem; } }
.lp-process-line {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--lp-stone-200);
  z-index: 0;
}
@media (min-width: 1024px) { .lp-process-line { display: block; } }
.lp-process-step { text-align: center; position: relative; z-index: 1; }
.lp-process-num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--lp-white);
  border: 1px solid var(--lp-stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font-serif);
  font-size: 1.5rem;
  color: var(--lp-rose-800);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.05), 0 20px 60px -10px rgba(157, 23, 77, 0.08);
  transition: background 0.5s ease, color 0.5s ease;
}
.lp-process-step:hover .lp-process-num {
  background: var(--lp-rose-800);
  color: var(--lp-white);
}
.lp-process-step h3 {
  font-family: var(--lp-font-serif);
  font-size: 1.5rem;
  color: var(--lp-ink);
  margin: 0 0 1rem;
}
.lp-process-step p {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--lp-stone-500);
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Pricing (front_landing) ----- */
.lp-pricing {
  padding: 6rem 1.5rem;
  background: var(--lp-cream);
}
.lp-pricing-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: center; }
.lp-pricing-card {
  max-width: 42rem;
  width: 100%;
  background: var(--lp-white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.05), 0 20px 60px -10px rgba(157, 23, 77, 0.08);
  border: 1px solid rgba(157, 23, 77, 0.15);
}
@media (min-width: 768px) { .lp-pricing-card { padding: 6rem 4rem; } }
.lp-pricing-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--lp-font-serif);
  font-size: clamp(12rem, 25vw, 35rem);
  color: rgba(157, 23, 77, 0.03);
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.lp-pricing-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-rose-800);
  margin-bottom: 2rem;
}
.lp-pricing-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--lp-ink);
  margin: 0 0 2rem;
}
.lp-pricing-title em { font-style: italic; font-weight: 300; color: var(--lp-rose-800); }
.lp-pricing-price-wrap { margin-bottom: 3rem; }
.lp-pricing-price-old {
  font-size: 1.125rem;
  color: rgba(87, 83, 78, 0.3);
  text-decoration: line-through;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lp-pricing-price {
  font-family: var(--lp-font-serif);
  font-size: clamp(2rem, 6vw, 9rem);
  color: var(--lp-ink);
  margin: 0;
  line-height: 1.1;
  word-break: break-word;
}
@media (max-width: 480px) {
  .lp-pricing-price { font-size: clamp(1.75rem, 8vw, 2.5rem); }
}
.lp-pricing-price-note {
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(157, 23, 77, 0.5);
  margin-top: 0.75rem;
}
.lp-pricing-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}
.lp-pricing-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-ink-soft);
  margin-bottom: 1rem;
}
.lp-pricing-list li:last-child { margin-bottom: 0; }
.lp-pricing-list svg { flex-shrink: 0; color: var(--lp-rose-700); }
.lp-pricing-btn {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lp-white);
  background: var(--lp-ink);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px -5px rgba(28, 25, 23, 0.1);
  transition: background 0.5s ease;
  text-decoration: none;
  text-align: center;
}
.lp-pricing-btn:hover { background: var(--lp-rose-800); }
.lp-pricing-disclaimer {
  margin-top: 2rem;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

/* ----- Footer (front_landing) ----- */
.lp-footer {
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--lp-stone-100);
  background: var(--lp-stone-50);
}
.lp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .lp-footer-inner { flex-direction: column; text-align: center; }
}
.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) { .lp-footer-brand { align-items: center; } }
.lp-footer-logo {
  font-family: var(--lp-font-serif);
  font-size: 2.25rem;
  color: var(--lp-ink);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.lp-footer-logo span { color: var(--lp-rose-800); font-weight: 800; }
.lp-footer-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-stone-400);
  max-width: 18rem;
  line-height: 1.6;
  margin: 0;
}
.lp-footer-links {
  display: flex;
  gap: 3rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-stone-500);
}
.lp-footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.lp-footer-links a:hover { color: var(--lp-rose-800); }
.lp-footer-contact-placeholder {
  color: var(--lp-stone-400);
  font-size: 9px;
  letter-spacing: 0.05em;
}
.lp-footer-legal { text-align: right; }
@media (max-width: 767px) { .lp-footer-legal { text-align: center; } }
.lp-footer-legal p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lp-stone-300);
}
.lp-footer-secure {
  margin-top: 0.75rem;
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lp-rose-800);
  font-weight: 800;
}

/* ----- Responsive: mobile-first and touch-friendly ----- */
/* Reduce expensive effects on mobile (iOS Safari: blur/backdrop-filter are costly) */
@media (max-width: 767px) {
  .lp-nav.scrolled .lp-nav-bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(254, 247, 249, 0.98);
  }
  .lp-hero-blur--center {
    filter: blur(60px);
    width: 100vw;
    height: 60vh;
    margin: -30vh -50vw 0 0;
  }
  .lp-hero-blur--right {
    filter: blur(50px);
    width: 30vw;
    height: 30vw;
  }
  .lp-petal:nth-child(n+6) {
    display: none;
  }
  .lp-nav {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }
  .lp-nav-links { gap: 1rem; }
  .lp-hero-content {
    padding: 2rem 1.25rem 3rem;
    padding-top: max(6rem, 2rem + env(safe-area-inset-top));
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
  .lp-hero-eyebrow { margin-top: 1.5rem; }
  .lp-hero-title { font-size: clamp(2.5rem, 12vw, 4rem); margin-bottom: 1.5rem; }
  .lp-hero-lead { font-size: 1rem; margin-bottom: 2rem; }
  .lp-hero-cta { flex-direction: column; gap: 1rem; }
  .lp-btn-hero, .lp-btn-hero-outline {
    width: 100%;
    max-width: 20rem;
    min-height: 48px;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
  }
  .lp-section { padding: 4rem 1.25rem; }
  .lp-features, .lp-occasions, .lp-process, .lp-pricing {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  .lp-footer {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
}

/* Prevent horizontal overflow from any full-width decorative elements */
main {
  position: relative;
  overflow-x: hidden;
  min-height: 0;
}
