/* Atelier Asset — landing. Papier, serif, mur de créas. */
html { scroll-padding-top: 5.5rem; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
:root {
  --lp-primary: #2953a2;
  --lp-primary-dark: #1a3566;
  --lp-secondary: #c45c26;
  --lp-secondary-dark: #a3491c;
  --lp-ink: #1c1914;
  --lp-ink-soft: #4a453c;
  --lp-paper: #f4efe6;
  --lp-paper-2: #ebe4d6;
  --lp-paper-3: #e2d9c8;
  --lp-cream: #fffaf3;
  --lp-line: #d4cbb8;
  --lp-serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --lp-sans: 'Rubik', system-ui, sans-serif;
}

.lp-body {
  font-family: var(--lp-sans);
  color: var(--lp-ink);
  background: var(--lp-paper);
  overflow-x: hidden;
  position: relative;
}

.lp-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* Nav */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(244, 239, 230, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--lp-line);
}
.lp-nav-inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.05rem 2rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-links { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 640px) {
  .lp-nav-inner { padding: 0.75rem 1rem; }
  .lp-nav-links .lp-link:not(.lp-btn-nav) { display: none; }
  .lp-nav-links { gap: 0.375rem; }
  .lp-btn-nav { padding: 0.5rem 0.75rem !important; font-size: 0.8125rem !important; }
}
.lp-nav-links a {
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.5rem 0.95rem;
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}
.lp-link { color: var(--lp-ink-soft); }
.lp-link:hover { color: var(--lp-ink); }
.lp-btn-nav {
  background: var(--lp-secondary);
  color: var(--lp-cream) !important;
  font-weight: 600;
}
.lp-btn-nav:hover { background: var(--lp-secondary-dark); }

/* Polaroid / print */
.lp-print {
  margin: 0;
  background: var(--lp-cream);
  padding: 0.5rem 0.5rem 1.7rem;
  box-shadow: 0 14px 40px rgba(28, 25, 20, 0.14), 0 2px 6px rgba(28, 25, 20, 0.06);
  border-radius: 2px;
}
.lp-print img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: var(--lp-paper-2);
}
.lp-print figcaption {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: #7a7368;
  text-align: center;
  margin-top: 0.55rem;
  letter-spacing: 0.01em;
}
.lp-print--compact {
  padding: 0.35rem 0.35rem 0.35rem;
  flex-shrink: 0;
  width: 10.5rem;
}
.lp-print--compact img { aspect-ratio: 1; object-fit: cover; }
.lp-print--compact.lp-print--story { width: 8.75rem; }
.lp-print--compact.lp-print--story img { aspect-ratio: auto; object-fit: contain; height: auto; }
.lp-print--empty {
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--lp-ink-soft);
  font-family: var(--lp-serif);
  font-style: italic;
}

/* Hero */
.lp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(196, 92, 38, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 80%, rgba(41, 83, 162, 0.06), transparent 50%),
    var(--lp-paper);
  padding: 2.25rem 0 3.5rem;
  overflow: hidden;
}
.lp-hero-grid {
  max-width: 76rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
}
.lp-hero-content { max-width: 34rem; }
.lp-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  margin: 0 0 1.1rem;
}
.lp-kicker--light { color: #e8a06a; }
.lp-hero h1 {
  font-family: var(--lp-serif);
  font-size: clamp(2.35rem, 5.4vw, 3.55rem);
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--lp-ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.lp-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--lp-secondary);
}
.lp-hero-lead {
  font-size: 1.0625rem;
  color: var(--lp-ink-soft);
  line-height: 1.65;
  margin: 0 0 1.85rem;
}
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lp-secondary);
  color: var(--lp-cream);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.22);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--lp-secondary-dark);
  box-shadow: 0 12px 32px rgba(196, 92, 38, 0.28);
}
.lp-btn-ghost {
  color: var(--lp-ink);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--lp-line);
  padding-bottom: 0.15rem;
}
.lp-btn-ghost:hover { border-bottom-color: var(--lp-ink); }
.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2.35rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--lp-line);
}
@media (max-width: 480px) {
  .lp-hero { padding: 6rem 0 2.5rem; min-height: auto; }
  .lp-hero-grid { padding: 0 1.15rem; }
  .lp-hero-stats { gap: 1rem 1.5rem; }
}
.lp-stat-val {
  font-family: var(--lp-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--lp-ink);
  letter-spacing: -0.03em;
}
.lp-stat-label { font-size: 0.75rem; color: #8a8276; margin-top: 0.15rem; }

/* Hero prints — mobile grid, desktop desk */
.lp-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.9rem;
  padding: 0.35rem 0.15rem 1.25rem;
}
.lp-hero-print--1 { transform: rotate(-2.4deg); z-index: 3; }
.lp-hero-print--2 { transform: rotate(3.2deg); margin-top: 1.6rem; z-index: 2; }
.lp-hero-print--3 { transform: rotate(1.8deg); z-index: 2; }
.lp-hero-print--4 { transform: rotate(-3.2deg); margin-top: 1.1rem; z-index: 1; }
.lp-hero-print img { aspect-ratio: auto; object-fit: contain; background: transparent; }
.lp-hero-print--3 img { aspect-ratio: auto; }
.lp-stamp {
  position: absolute;
  bottom: 8%;
  left: 6%;
  z-index: 5;
  border: 1.5px solid var(--lp-secondary);
  color: var(--lp-secondary);
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.32rem 0.7rem;
  transform: rotate(-11deg);
  background: rgba(255, 250, 243, 0.92);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.08);
}
@media (min-width: 1024px) {
  .lp-hero-visual {
    display: block;
    height: 34rem;
    padding: 0;
  }
  .lp-hero-print {
    position: absolute;
    margin: 0;
  }
  .lp-hero-print--1 {
    width: 17rem;
    top: 16%;
    left: 22%;
    z-index: 3;
    transform: rotate(-3deg);
  }
  .lp-hero-print--2 {
    width: 12.75rem;
    top: 2%;
    left: 0;
    z-index: 2;
    transform: rotate(7deg);
  }
  .lp-hero-print--3 {
    width: 12rem;
    bottom: 0;
    right: 2%;
    z-index: 2;
    transform: rotate(5deg);
  }
  .lp-hero-print--4 {
    width: 11rem;
    top: -2%;
    right: 14%;
    z-index: 1;
    transform: rotate(-8deg);
  }
  .lp-hero-print:hover {
    transform: rotate(0deg) translateY(-6px);
    z-index: 6;
    transition: transform 0.35s ease;
  }
  .lp-stamp { bottom: 18%; left: 8%; font-size: 0.85rem; }
}

/* Marquee — table lumineuse */
.lp-marquee-band {
  background: var(--lp-ink);
  padding: 1.75rem 0 2.1rem;
  overflow: hidden;
}
.lp-marquee-label {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 250, 243, 0.55);
  text-align: center;
  margin: 0 1.5rem 1.25rem;
}
.lp-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.lp-marquee + .lp-marquee { margin-top: 1rem; }
.lp-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: lp-marquee 48s linear infinite;
  padding: 0.35rem 0 0.6rem;
}
.lp-marquee--reverse .lp-marquee-track {
  animation-name: lp-marquee-rev;
  animation-duration: 56s;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lp-marquee-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.lp-marquee .lp-print {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Sections */
.lp-section { padding: 5.25rem 0; }
#creas, #comment, #tarifs { scroll-margin-top: 5.5rem; }
.lp-section-alt { background: var(--lp-paper-2); }
.lp-container { max-width: 72rem; margin: 0 auto; padding: 0 2rem; box-sizing: border-box; }
.lp-container--wide { max-width: 78rem; }
.lp-section-head { text-align: center; max-width: 38rem; margin: 0 auto 3rem; }
.lp-section-head h2,
.lp-look-head h2,
.lp-cta-band h2 {
  font-family: var(--lp-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.lp-section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  color: var(--lp-ink);
  margin: 0.35rem 0 0.75rem;
}
.lp-section-head p { color: var(--lp-ink-soft); font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* Lookbook */
.lp-look-head { max-width: 36rem; margin: 0 0 2.75rem; }
.lp-look-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--lp-ink);
  margin: 0.35rem 0 0.75rem;
}
.lp-look-head p { color: var(--lp-ink-soft); font-size: 1.05rem; line-height: 1.6; margin: 0; }
.lp-lookbook-wall {
  column-count: 2;
  column-gap: 1.1rem;
}
@media (min-width: 720px) { .lp-lookbook-wall { column-count: 3; column-gap: 1.25rem; } }
@media (min-width: 1100px) { .lp-lookbook-wall { column-count: 4; column-gap: 1.4rem; } }
.lp-look-card {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lp-look-card:nth-child(3n) { transform: rotate(-1.1deg); }
.lp-look-card:nth-child(3n+1) { transform: rotate(0.8deg); }
.lp-look-card:nth-child(3n+2) { transform: rotate(-0.4deg); }
.lp-look-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 22px 50px rgba(28, 25, 20, 0.18);
}
.lp-look-card img,
.lp-look-card.lp-print--story img,
.lp-look-card.lp-print--feed img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

/* Steps */
.lp-steps { display: grid; gap: 1.5rem; position: relative; }
@media (min-width: 768px) {
  .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .lp-steps::before {
    content: '';
    position: absolute;
    top: 1.7rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--lp-line);
  }
}
.lp-step {
  text-align: left;
  padding: 1.75rem 1.5rem 1.6rem;
  background: var(--lp-cream);
  border-radius: 2px;
  border: 1px solid var(--lp-line);
  position: relative;
}
.lp-step-num {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--lp-secondary);
  margin-bottom: 0.85rem;
  line-height: 1;
  position: relative;
  background: var(--lp-cream);
  display: inline-block;
  padding-right: 0.5rem;
}
.lp-step h3 {
  font-family: var(--lp-serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.lp-step p { font-size: 0.9rem; color: var(--lp-ink-soft); line-height: 1.58; margin: 0; }

/* Features */
.lp-features { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .lp-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-features { grid-template-columns: repeat(3, 1fr); } }
.lp-feature {
  padding: 1.5rem 1.4rem;
  background: var(--lp-cream);
  border: 1px solid var(--lp-line);
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-feature:hover { border-color: #c4b9a4; transform: translateY(-2px); }
.lp-feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.35rem;
  background: var(--lp-paper);
  color: var(--lp-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
}
.lp-feature h3 { font-weight: 600; margin: 0 0 0.35rem; font-size: 1rem; }
.lp-feature p { font-size: 0.875rem; color: var(--lp-ink-soft); line-height: 1.55; margin: 0; }

/* Pricing */
.lp-pricing { display: grid; gap: 1.35rem; padding-top: 0.5rem; }
@media (min-width: 768px) { .lp-pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.lp-plan {
  background: var(--lp-cream);
  border: 1px solid var(--lp-line);
  border-radius: 2px;
  padding: 2rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-plan--featured {
  border-color: var(--lp-secondary);
  box-shadow: 0 16px 40px rgba(196, 92, 38, 0.1);
  background: #fff8f1;
}
.lp-plan-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-secondary);
  color: var(--lp-cream);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-plan-name {
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  font-weight: 600;
}
.lp-plan-price {
  font-family: var(--lp-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--lp-ink);
  margin: 0.4rem 0 1.1rem;
}
.lp-plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.lp-plan-features li {
  font-size: 0.875rem;
  color: var(--lp-ink-soft);
  padding: 0.4rem 0;
  padding-left: 1.15rem;
  position: relative;
}
.lp-plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 1px;
  background: var(--lp-secondary);
}
.lp-plan-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.45rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lp-plan-cta--primary { background: var(--lp-secondary); color: var(--lp-cream); }
.lp-plan-cta--primary:hover { background: var(--lp-secondary-dark); }
.lp-plan-cta--outline { border: 1px solid var(--lp-line); color: var(--lp-ink); }
.lp-plan-cta--outline:hover { border-color: var(--lp-secondary); color: var(--lp-secondary); }

/* CTA band */
.lp-cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(196, 92, 38, 0.18), transparent 55%),
    var(--lp-ink);
  padding: 5rem 2rem;
  text-align: center;
}
.lp-cta-band h2 {
  color: var(--lp-cream);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  margin: 0.4rem 0 0.85rem;
}
.lp-cta-band p {
  color: rgba(255, 250, 243, 0.62);
  margin: 0 auto 2rem;
  max-width: 30rem;
  line-height: 1.6;
}

/* Footer */
.lp-footer {
  padding: 2.25rem 2rem;
  border-top: 1px solid var(--lp-line);
  text-align: center;
  font-size: 0.8125rem;
  color: #8a8276;
  background: var(--lp-paper);
}
.lp-footer a { color: var(--lp-ink-soft); text-decoration: none; }
.lp-footer a:hover { color: var(--lp-secondary); }

@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track { animation: none !important; }
  .lp-look-card, .lp-hero-print, .lp-btn-primary, .lp-feature { transition: none; }
}
