/* ============================================================
   LITTLESOMS.COM — Design System v2.0
   Kawaii-French illustrated art shop
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:        #fbf1d7;
  --cream-dark:   #f3e5bf;
  --rose:         #F2C4CE;
  --rose-dark:    #e8a8b8;
  --green:        #a6bf7a;
  --green-dark:   #8aaa5a;
  --yellow:       #fbda6f;
  --terracotta:   #C4502A;
  --terracotta-l: #d4704a;
  --text:         #2C2C2C;
  --text-light:   #7a6f66;
  --white:        #fffdf7;
  --font-title:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Playfair Display', Georgia, serif;
  --font-script:  'Parisienne', cursive;
  --font-ui:      'Playfair Display', Georgia, serif;
  --header-h:     80px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:            0.35s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
body.touch-device { cursor: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; }

/* --- Page Transition Curtain --- */
#ls-page-transition {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  pointer-events: none;
  transform-origin: bottom;
}

/* --- Custom Cursor --- */
#ls-cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 32px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-2px, -2px);
  will-change: transform;
}
#ls-duck {
  position: fixed; top: 0; left: 0;
  width: 54px; height: 60px;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-27px, -55px);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.4s;
}
#ls-duck.visible { opacity: 1; }

/* --- Header --- */
.ls-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(251, 241, 215, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 196, 206, 0.25);
  transition: box-shadow var(--t) var(--ease);
}
.ls-header.scrolled { box-shadow: 0 4px 24px rgba(196, 80, 42, 0.07); }
.admin-bar .ls-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .ls-header { top: 46px; } }

.ls-logo { display: flex; align-items: center; }
.ls-logo img {
  height: 58px; width: auto;
  transition: transform var(--t) var(--ease);
}
.ls-logo:hover img { transform: scale(1.04) rotate(-1.5deg); }

.ls-nav ul { display: flex; gap: 2.4rem; align-items: center; }
.ls-nav a {
  font-family: var(--font-ui);
  font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text);
  position: relative; padding-bottom: 3px;
  transition: color var(--t);
}
.ls-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.35s ease;
}
.ls-nav a:hover::after,
.ls-nav .current-menu-item > a::after { width: 100%; }
.ls-nav .current-menu-item > a { color: var(--terracotta); }
.ls-nav .menu-item-shop a,
.ls-nav .menu-item-object-page:last-child a {
  background: var(--terracotta); color: white;
  padding: 0.45rem 1.2rem; border-radius: 30px;
  transition: background var(--t), transform var(--t);
}
.ls-nav .menu-item-shop a:hover { background: var(--terracotta-l); transform: translateY(-1px); }
.ls-nav .menu-item-shop a::after { display: none; }

/* Hamburger */
.ls-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.ls-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.ls-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4.5px); }
.ls-hamburger.active span:nth-child(2) { opacity: 0; }
.ls-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4.5px); }

.ls-mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--cream); z-index: 490;
  padding: 2rem;
  border-bottom: 1px solid var(--rose);
  box-shadow: 0 8px 24px rgba(44,44,44,0.07);
}
.ls-mobile-nav.open { display: block; }
.ls-mobile-nav ul { flex-direction: column; gap: 1.4rem; display: flex; }
.ls-mobile-nav a { font-size: 1rem; letter-spacing: 0.1em; }

/* --- Footer --- */
.ls-footer {
  background: var(--cream-dark);
  border-top: 1px solid rgba(242, 196, 206, 0.4);
  padding: 4rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.8rem;
}
.ls-footer-logo img { height: 50px; opacity: 0.8; margin: 0 auto; }
.ls-footer-links {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.ls-footer-links a {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); transition: color var(--t);
}
.ls-footer-links a:hover { color: var(--terracotta); }
.ls-footer-social a {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: opacity var(--t);
}
.ls-footer-social a:hover { opacity: 0.75; }
.ls-footer-copy { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.06em; }

/* --- Buttons --- */
.ls-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem; border-radius: 40px;
  font-family: var(--font-ui); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all var(--t) var(--ease); cursor: none;
}
.ls-btn-primary {
  background: var(--terracotta); color: white;
  border: 1.5px solid var(--terracotta);
}
.ls-btn-primary:hover {
  background: transparent; color: var(--terracotta);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,80,42,0.18);
}
.ls-btn-outline {
  background: transparent; color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.ls-btn-outline:hover {
  background: var(--terracotta); color: white; transform: translateY(-2px);
}
.ls-btn-rose {
  background: var(--rose); color: var(--text);
  border: 1.5px solid var(--rose);
}
.ls-btn-rose:hover {
  background: var(--rose-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,196,206,0.5);
}

/* --- Reveal initial states --- */
.ls-reveal        { opacity: 0; transform: translateY(38px); }
.ls-reveal-left   { opacity: 0; transform: translateX(-38px); }
.ls-reveal-right  { opacity: 0; transform: translateX(38px); }
.ls-reveal-scale  { opacity: 0; transform: scale(0.92); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.ls-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--cream);
}
.ls-hero-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23F2C4CE' stroke-width='1' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 56px 56px; will-change: transform;
}
.ls-hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.ls-hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(242,196,206,0.38);
  top: -120px; right: -120px;
}
.ls-hero-blob-2 {
  width: 350px; height: 350px;
  background: rgba(251,218,111,0.25);
  bottom: -80px; left: -80px;
}
.ls-hero-blob-3 {
  width: 220px; height: 220px;
  background: rgba(166,191,122,0.22);
  top: 38%; left: 8%;
}
.ls-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 820px; padding-top: var(--header-h);
}
.ls-hero-welcome {
  font-family: var(--font-ui); font-size: 0.82rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.6rem;
}
.ls-hero-title {
  font-family: var(--font-script);
  font-size: clamp(4.5rem, 12vw, 9rem);
  color: var(--terracotta); line-height: 1; margin-bottom: 1.2rem;
}
.ls-hero-sub {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  color: var(--text); margin-bottom: 2.8rem;
}
.ls-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  transition: opacity 0.5s;
}
.ls-scroll-indicator.hidden { opacity: 0; }
.ls-scroll-indicator span {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light);
}
.ls-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   HOME — SECTIONS
   ============================================================ */
.ls-section { padding: 7rem 4rem; }

.ls-section-eyebrow {
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.ls-section-title {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.15; color: var(--text); margin-bottom: 1.4rem;
}
.ls-section-body {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-light); max-width: 480px; margin-bottom: 2.5rem;
}

/* Shop section */
.ls-shop-section {
  background: var(--white); position: relative; overflow: hidden;
}
.ls-shop-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--yellow), var(--green), var(--rose));
}
.ls-shop-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ls-product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.ls-product-card {
  aspect-ratio: 3/4; border-radius: 14px;
  position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  cursor: none;
}
.ls-product-card:hover {
  transform: translateY(-8px); box-shadow: 0 24px 48px rgba(44,44,44,0.1);
}
.ls-product-card:nth-child(1) { background: var(--rose); margin-top: 2rem; }
.ls-product-card:nth-child(2) { background: var(--green); }
.ls-product-card:nth-child(3) { background: var(--yellow); }
.ls-product-card:nth-child(4) { background: var(--cream-dark); margin-top: -2rem; }
.ls-product-card-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 1rem;
}
.ls-product-card-label {
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(44,44,44,0.55);
}

/* Universe teaser */
.ls-universe-section {
  background: var(--rose); position: relative; overflow: hidden;
}
.ls-universe-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23fffdf7' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 56px 56px;
}
.ls-universe-inner {
  max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.ls-universe-words {
  display: flex; justify-content: center; gap: 4rem;
  margin: 3rem 0; flex-wrap: wrap;
}
.ls-universe-word {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  cursor: none;
}
.ls-universe-word-icon { font-size: 2.8rem; display: block; }
.ls-universe-word span {
  font-family: var(--font-title); font-style: italic; font-size: 1.3rem;
  color: var(--text);
}

/* About teaser */
.ls-about-section { overflow: hidden; }
.ls-about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 6rem; align-items: center;
}
.ls-about-blob {
  aspect-ratio: 1; max-width: 420px; width: 100%;
  background: var(--cream-dark);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; position: relative; overflow: hidden;
}
.ls-about-blob::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23F2C4CE' stroke-width='1' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 56px 56px; pointer-events: none;
}
.ls-about-quote {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.55; color: var(--text); margin-bottom: 0.8rem;
}
.ls-about-quote::before { content: '\201C'; }
.ls-about-quote::after  { content: '\201D'; }
.ls-about-sig {
  font-family: var(--font-script); font-size: 1.6rem;
  color: var(--terracotta); margin-bottom: 2.2rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ls-page-hero {
  min-height: 45vh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 4rem) 4rem 4rem;
  position: relative; overflow: hidden; background: var(--cream);
}
.ls-page-hero-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23F2C4CE' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 56px 56px;
}
.ls-page-hero-content { position: relative; z-index: 1; max-width: 860px; }
.ls-page-eyebrow {
  display: block; font-family: var(--font-ui); font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.ls-page-hero h1 {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: 1.05; color: var(--text);
}

.ls-about-body {
  max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem;
}
.ls-act { margin-bottom: 5rem; }
.ls-act-eyebrow {
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--rose);
}
.ls-act h2 {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem); line-height: 1.2;
  color: var(--text); margin-bottom: 2rem;
}
.ls-act p {
  font-size: 1rem; line-height: 1.95; color: var(--text); margin-bottom: 1.4rem;
}
.ls-act p:first-of-type::first-letter {
  font-family: var(--font-script); font-size: 3.8rem;
  line-height: 0.75; float: left; margin-right: 0.12em;
  color: var(--terracotta);
}
.ls-duck-sep {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin: 4rem 0;
}
.ls-duck-sep::before, .ls-duck-sep::after {
  content: ''; width: 80px; height: 1px; background: var(--rose);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ls-contact-body {
  max-width: 960px; margin: 0 auto; padding: 4rem 2rem 6rem;
}
.ls-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.ls-contact-info h2 {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: 2.2rem; color: var(--text); margin-bottom: 2.5rem;
}
.ls-contact-item { margin-bottom: 2rem; }
.ls-contact-item-label {
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.3rem;
}
.ls-contact-item-value { font-size: 1rem; color: var(--text); }
.ls-contact-item-value a {
  color: var(--terracotta); border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.ls-contact-item-value a:hover { border-color: var(--terracotta); }

/* Form */
.ls-form { display: flex; flex-direction: column; gap: 1.3rem; }
.ls-form h2 {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--text); margin-bottom: 0.5rem;
}
.ls-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ls-form-label {
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light);
}
.ls-form-field {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(242,196,206,0.8);
  border-radius: 6px; background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; cursor: none; width: 100%;
}
.ls-form-field:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,80,42,0.07);
}
textarea.ls-form-field { resize: vertical; min-height: 130px; }
.ls-form-success {
  background: rgba(166,191,122,0.18); border: 1px solid var(--green);
  border-radius: 6px; padding: 1rem 1.2rem;
  font-size: 0.95rem; color: var(--text);
}

/* ============================================================
   L'UNIVERS PAGE
   ============================================================ */
.ls-univers-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; position: relative; overflow: hidden;
  background: #241a16;
}
.ls-univers-hero-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23F2C4CE' stroke-width='0.8' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 56px 56px; will-change: transform;
}
.ls-univers-hero-content { position: relative; z-index: 2; max-width: 700px; }
.ls-univers-hero p {
  font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.6rem;
}
.ls-univers-hero h1 {
  font-family: var(--font-script); font-size: clamp(3rem, 9vw, 7rem);
  color: var(--cream); line-height: 1.05; margin-bottom: 2rem;
}
.ls-univers-hero blockquote {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.45rem); color: rgba(251,241,215,0.7);
  line-height: 1.8; max-width: 560px; margin: 0 auto;
}

.ls-chapter {
  padding: 8rem 4rem; position: relative; overflow: hidden;
}
.ls-chapter:nth-child(even) { background: rgba(242,196,206,0.12); }
.ls-chapter-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.ls-chapter:nth-child(odd) .ls-chapter-inner { direction: rtl; }
.ls-chapter:nth-child(odd) .ls-chapter-inner > * { direction: ltr; }
.ls-chapter-num {
  font-family: var(--font-script); font-size: 10rem;
  color: rgba(196,80,42,0.06); line-height: 1; margin-bottom: -3rem;
}
.ls-chapter-eyebrow {
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.ls-chapter-title {
  font-family: var(--font-title); font-style: italic; font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.15;
  color: var(--text); margin-bottom: 1.6rem;
}
.ls-chapter-text {
  font-size: 1rem; line-height: 1.95; color: var(--text);
}
.ls-chapter-deco {
  aspect-ratio: 1; max-width: 380px; width: 100%;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 6rem; position: relative;
}
.ls-chapter-deco::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0L56 28L28 56L0 28Z' fill='none' stroke='%23F2C4CE' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 56px 56px; background-color: var(--cream-dark);
}

/* ============================================================
   BLOG / ARTICLES (home.php)
   ============================================================ */
.ls-blog-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}
.ls-post-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  cursor: none;
}
.ls-post-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(44,44,44,0.09); }
.ls-post-card-thumb {
  aspect-ratio: 16/9; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.ls-post-card-body { padding: 1.8rem; }
.ls-post-card-date {
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.6rem;
}
.ls-post-card-title {
  font-family: var(--font-title); font-style: italic; font-weight: 400;
  font-size: 1.4rem; line-height: 1.25; color: var(--text); margin-bottom: 0.8rem;
  transition: color var(--t);
}
.ls-post-card:hover .ls-post-card-title { color: var(--terracotta); }
.ls-post-card-excerpt {
  font-size: 0.9rem; line-height: 1.7; color: var(--text-light);
}
.ls-no-posts {
  text-align: center; padding: 5rem 2rem;
}
.ls-no-posts p {
  font-family: var(--font-title); font-style: italic;
  font-size: 1.5rem; color: var(--text-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .ls-header { padding: 0 1.5rem; }
  .ls-nav { display: none; }
  .ls-hamburger { display: flex; }
  .ls-section { padding: 4rem 1.5rem; }
  .ls-page-hero { padding: calc(var(--header-h) + 2rem) 1.5rem 3rem; }
  .ls-shop-inner, .ls-about-inner,
  .ls-contact-grid, .ls-chapter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ls-chapter:nth-child(odd) .ls-chapter-inner { direction: ltr; }
  .ls-universe-words { gap: 2rem; }
  .ls-footer { padding: 2.5rem 1.5rem; }
  .ls-contact-body { padding: 3rem 1.5rem 5rem; }
  .ls-about-body { padding: 3rem 1.5rem 5rem; }
  .ls-chapter { padding: 4rem 1.5rem; }
  body { cursor: auto; }
  #ls-cursor, #ls-duck { display: none; }
}
@media (max-width: 600px) {
  .ls-hero-title { font-size: 3.5rem; }
  .ls-chapter-deco { max-width: 200px; }
}
