@font-face {
  font-family: 'CuteDrop Script';
  src: url('fonts/cutedrop-script.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'CuteDrop Caps';
  src: url('fonts/cutedrop-caps.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --lin: #F8F6F0;
  --blue-frosting: #8DC9D3;
  --pistachio: #C7D78A;
  --peach: #FEB98F;
  --lemon: #FAE570;
  --blueberry: #BCCDD7;
  --strawberry: #FC9584;
  --bleu-stylo: #2E5B78;
  --ink: #1a1a1a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.lalisette-landing {
  background: var(--lin);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ SPLIT LAYOUT ============ */

.ll-split {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.ll-photo {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: #cfd9d6;
}
.ll-photo picture,
.ll-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Soft right-edge fade into Lin — bleed effect from the deck */
.ll-photo::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 90px;
  background: linear-gradient(to right, rgba(248, 246, 240, 0), var(--lin));
  pointer-events: none;
  z-index: 2;
}

.ll-content {
  flex: 1 1 55%;
  background: var(--lin);
  padding: 56px 72px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.ll-logo {
  width: 170px;
  height: auto;
  margin-bottom: 48px;
  align-self: flex-start;
}
.ll-logo img { width: 100%; height: auto; display: block; }

.ll-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.ll-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  line-height: 1;
  color: var(--blue-frosting);
  margin: 0 0 24px;
  display: block;
}

.ll-mission {
  font-family: 'CuteDrop Script', 'Brush Script MT', cursive;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.1;
  color: var(--bleu-stylo);
  margin: 0 0 28px;
  font-weight: 400;
  text-align: left;
}
.ll-mission .ll-word {
  white-space: nowrap;
}
.ll-mission .ll-dropcap {
  font-family: 'CuteDrop Script', cursive;
  font-size: 1.4em;
  line-height: 0.9;
  color: var(--bleu-stylo);
  display: inline-block;
  vertical-align: -0.08em;
}

.ll-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 36px;
  max-width: 480px;
}

.ll-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  max-width: 480px;
  box-shadow: 0 6px 24px rgba(46, 91, 120, 0.07);
  border: 1px solid rgba(141, 201, 211, 0.35);
}

.ll-form-label {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  line-height: 1.2;
  color: var(--bleu-stylo);
  margin-bottom: 14px;
  text-align: center;
}

.ll-form-hint {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}

.ll-footer {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #888;
  text-align: left;
  margin-top: 40px;
}
.ll-footer a { color: var(--bleu-stylo); text-decoration: none; }

/* ============ TABLET ============ */
@media (max-width: 1024px) {
  .ll-photo { flex: 0 0 42%; }
  .ll-content { padding: 48px 48px 36px; }
  .ll-logo { width: 150px; margin-bottom: 36px; }
  .ll-mission { font-size: clamp(36px, 5.2vw, 52px); }
}

/* ============ MOBILE ============ */
@media (max-width: 760px) {
  .ll-split {
    flex-direction: column;
    min-height: auto;
  }
  .ll-photo {
    flex: 0 0 auto;
    width: 100%;
    height: 42vh;
    min-height: 280px;
    max-height: 420px;
  }
  .ll-photo::after {
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(248, 246, 240, 0), var(--lin));
  }
  .ll-photo img { object-position: center 25%; }
  .ll-content {
    padding: 32px 24px 32px;
    flex: 1;
    align-items: center;
    text-align: center;
  }
  .ll-logo { width: 140px; margin: 0 auto 24px; align-self: center; }
  .ll-main { align-items: center; text-align: center; max-width: 100%; }
  .ll-mission { font-size: 42px; text-align: center; }
  .ll-sub { text-align: center; }
  .ll-form-wrap { width: 100%; max-width: 460px; }
  .ll-footer { text-align: center; margin-top: 28px; width: 100%; }
}

@media (max-width: 480px) {
  .ll-photo { height: 38vh; min-height: 240px; }
  .ll-mission { font-size: 36px; }
  .ll-form-wrap { padding: 18px; border-radius: 16px; }
}
