:root {
  --ln-plum: #6a0143;      /* headings, header bg */
  --ln-maroon: #720041;    /* badge bg, footer bg */
  --ln-pink: #e90055;      /* hero bg, CTA bg, bold accent */
  --ln-magenta: #d50158;   /* reason 03 accent + card bg */
  --ln-ink: #3d2436;       /* body copy */
  --ln-cream: #fff6ec;
  --ln-pastel-pink: #ffc8c7;
  --ln-pastel-orange: #ffca73;
  --ln-pastel-green: #dceedb;
  --ln-pastel-blue: #cfe8f3;
  --ln-pastel-mauve: #ecdbe6;
  --ln-white: #ffffff;

  --font-display: 'Anton', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --ln-side-pad: 20px;
  --ln-radius-card: 24px;
  --ln-radius-media: 16px;
  --ln-gap: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ln-white);
  color: var(--ln-ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */

.ln-header {
  background: var(--ln-plum);
  height: 85px;
}

.ln-header__inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--ln-side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ln-header__brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.ln-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--ln-white);
  white-space: nowrap;
}

.ln-tagline {
  display: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: var(--ln-white);
  white-space: nowrap;
}

.ln-shop-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--ln-pink);
  color: var(--ln-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.ln-shop-btn:hover {
  opacity: 0.85;
}

/* ---------- Hero ---------- */

.ln-hero {
  background: var(--ln-pink);
  display: flex;
  flex-direction: column;
}

.ln-hero__content {
  padding: 40px var(--ln-side-pad) 44px;
  color: var(--ln-white);
}

.ln-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ln-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.ln-hero__title-desktop {
  display: none;
}

.ln-hero__title-mobile {
  display: block;
  font-size: 32px;
  line-height: 1.2;
}

.ln-hero__question {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.3;
}

.ln-hero__body {
  margin: 0 0 22px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
}

.ln-hero__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ln-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ln-hero__media {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.ln-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Reason sections ---------- */

main#reasons {
  padding: var(--ln-gap) 0;
  display: flex;
  flex-direction: column;
  gap: var(--ln-gap);
}

.ln-reason {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(100% - var(--ln-side-pad) * 2, 1040px);
  margin-inline: auto;
}

.ln-reason__media {
  position: relative;
  aspect-ratio: 10 / 9;
  border-radius: var(--ln-radius-card);
  overflow: hidden;
  padding: 12px;
  background: var(--ln-pastel-pink);
}

.ln-reason:nth-of-type(2) .ln-reason__media { background: var(--ln-pastel-orange); }
.ln-reason:nth-of-type(3) .ln-reason__media { background: var(--ln-magenta); }
.ln-reason:nth-of-type(4) .ln-reason__media { background: var(--ln-cream); }
.ln-reason:nth-of-type(5) .ln-reason__media { background: var(--ln-pastel-green); }
.ln-reason:nth-of-type(6) .ln-reason__media { background: var(--ln-pastel-blue); }
.ln-reason:nth-of-type(7) .ln-reason__media { background: var(--ln-pastel-mauve); }

.ln-reason__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--ln-radius-media);
}

.ln-reason__content {
  min-width: 0;
}

.ln-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--ln-maroon);
  color: var(--ln-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ln-reason__content h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0.2px;
  color: var(--ln-plum);
}

.ln-reason__content p {
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ln-ink);
  letter-spacing: -0.1px;
}

.ln-reason__content p:last-child {
  margin-bottom: 0;
}

.ln-reason__content strong {
  font-weight: 700;
  color: var(--ln-pink);
}

.ln-strong--magenta {
  color: var(--ln-magenta);
}

/* ---------- Footer ---------- */

.ln-footer {
  background: var(--ln-maroon);
  padding: 28px var(--ln-side-pad);
  text-align: center;
}

.ln-footer p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.ln-footer__domain {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* =====================================================
   Desktop — matches the Figma "1440w light" frame (≥860px)
   ===================================================== */

@media (min-width: 860px) {
  :root {
    --ln-side-pad: clamp(24px, 4vw, 166px);
    --ln-radius-card: 30px;
    --ln-radius-media: 20px;
    --ln-gap: 100px;
  }

  .ln-header__inner {
    padding: 0 clamp(24px, 11.5vw, 166px);
  }

  .ln-logo {
    font-size: 20px;
  }

  .ln-tagline {
    display: inline-block;
  }

  .ln-hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 605px;
    position: relative;
    overflow: hidden;
  }

  .ln-hero__content {
    flex: 0 1 673px;
    padding: 72px clamp(24px, 4.2vw, 60px) 72px clamp(24px, 4.2vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ln-eyebrow {
    font-size: 15px;
  }

  .ln-hero__title {
    margin-bottom: 30px;
  }

  .ln-hero__title-mobile {
    display: none;
  }

  .ln-hero__title-desktop {
    display: block;
    font-size: clamp(34px, 3vw + 8px, 50px);
    line-height: 1.3;
  }

  .ln-hero__question {
    font-size: 20px;
    line-height: 1.25;
  }

  .ln-hero__body {
    font-size: 20px;
    line-height: 1.75;
  }

  .ln-hero__cta {
    font-size: 15px;
  }

  .ln-hero__media {
    flex: 1 1 auto;
    min-width: 0;
    aspect-ratio: auto;
    position: relative;
  }

  .ln-hero__media::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 150px;
    background: linear-gradient(to right, var(--ln-pink), rgba(233, 0, 85, 0));
    z-index: 1;
  }

  main#reasons {
    padding: 100px 0;
    gap: 0;
  }

  .ln-reason {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    margin-bottom: 125px;
  }

  .ln-reason:last-of-type {
    margin-bottom: 0;
  }

  .ln-reason--reverse {
    flex-direction: row-reverse;
  }

  .ln-reason__media {
    flex: 1 1 50%;
    aspect-ratio: 520 / 490;
    padding: 16px;
  }

  .ln-reason__content {
    flex: 1 1 50%;
  }

  .ln-badge {
    height: 40px;
    padding: 0 16px;
    margin-bottom: 30px;
    border-radius: 10px;
    font-size: 14px;
  }

  .ln-reason__content h2 {
    font-size: clamp(32px, 2.4vw + 12px, 50px);
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .ln-reason__content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
  }

  .ln-footer {
    padding: 30px var(--ln-side-pad);
  }

  .ln-footer p {
    font-size: 13px;
  }
}

@media (min-width: 860px) and (max-width: 1023px) {
  .ln-hero__content {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
