/* =========================================================
   Monorisu — site-wide LP / archive styles (extends article.css)
   ========================================================= */

/* LP hero */
.lp-hero {
  position: relative;
  padding: 96px 24px 80px;
  background:
    radial-gradient(circle at 12% 18%, rgba(191,227,201,.35) 0, transparent 48%),
    radial-gradient(circle at 88% 80%, rgba(247,203,166,.28) 0, transparent 50%),
    linear-gradient(180deg, #FBF5EC 0%, #F8EDE0 100%);
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('img/pattern-dots.svg');
  background-size: 32px;
  opacity: 0.10;
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.lp-hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--caramel-deep);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(201, 147, 106, 0.3);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  backdrop-filter: blur(4px);
}
.lp-hero-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.4;
  margin-bottom: 28px;
  font-weight: 400;
}
.lp-hero-title .en {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--caramel);
  font-size: 0.5em;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.lp-hero-title .jp {
  display: block;
  font-family: var(--ff-serif-jp);
  color: var(--espresso);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.lp-hero-desc {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--fg-2);
}
.lp-hero-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Chip */
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid var(--hairline);
  color: var(--fg-1);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  background-image: none;
  transition: all var(--dur-base) var(--ease-soft);
}
.lp-chip span {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--caramel-deep);
  font-size: 13px;
}
.lp-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  background-size: 0 0;
}
.lp-chip-sage   { border-color: rgba(142, 196, 161, 0.5); }
.lp-chip-sakura { border-color: rgba(227, 136, 153, 0.5); }
.lp-chip-butter { border-color: rgba(231, 201, 110, 0.5); }
.lp-chip-navy   { border-color: rgba(61, 74, 95, 0.3); }
.lp-chip-cream  { border-color: rgba(201, 147, 106, 0.4); }
.lp-chip-moss   { border-color: rgba(106, 128, 96, 0.4); }

/* LP main = full-width, no sidebar */
.lp-main { padding: 64px 24px 96px; }
.lp-full {
  grid-column: 1 / -1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section head */
.lp-section { margin-bottom: 80px; }
.lp-section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.lp-section-eyebrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--caramel-deep);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.lp-section-title {
  font-family: var(--ff-serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.lp-section-more {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--caramel-deep);
  font-size: 14px;
  text-decoration: none;
  background-image: none;
  white-space: nowrap;
}
.lp-section-more span { margin-left: 4px; transition: margin var(--dur-base) var(--ease-soft); }
.lp-section-more:hover span { margin-left: 10px; }

/* Card grid */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .lp-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-card-grid { grid-template-columns: 1fr; }
  .lp-section-head { grid-template-columns: 1fr; }
}

.lp-card {
  display: block;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-2);
  transition: all var(--dur-base) var(--ease-soft);
  background-image: none;
  text-decoration: none;
  color: inherit;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-4);
  background-size: 0 0;
}

/* Card thumbnail (image OR gradient placeholder) */
.lp-card-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.lp-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lp-card-thumb-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 253, 248, 0.9);
}
.lp-card-thumb-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('img/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.25;
}
.lp-card-thumb-ph .en {
  position: relative;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.04em;
}

/* Thumb color variants — gradient for placeholder, tint overlay optional for photos */
.lp-card-thumb-sage   { background: linear-gradient(135deg, #BFE3C9 0%, #8EC4A1 100%); }
.lp-card-thumb-sakura { background: linear-gradient(135deg, #F2B6C1 0%, #E38899 100%); }
.lp-card-thumb-butter { background: linear-gradient(135deg, #F5E4A3 0%, #E7C96E 100%); }
.lp-card-thumb-navy   { background: linear-gradient(135deg, #5A6B85 0%, #3D4A5F 100%); }
.lp-card-thumb-cream  { background: linear-gradient(135deg, #F3E9D8 0%, #C9936A 100%); }
.lp-card-thumb-moss   { background: linear-gradient(135deg, #A8B89C 0%, #6A8060 100%); }

/* Card body */
.lp-card-body { padding: 20px 22px 24px; }
.lp-card-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--caramel-deep);
  margin-bottom: 10px;
  padding: 3px 10px;
  background: var(--ivory);
  border-radius: 999px;
}
.lp-card-title {
  font-family: var(--ff-serif-jp);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--espresso);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-card-meta {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 13px;
  color: var(--cocoa);
  margin: 0;
}

/* Archive head */
.archive-head {
  text-align: center;
  padding: 40px 0 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}
.archive-head .lp-section-eyebrow { display: block; margin-bottom: 12px; }
.archive-head .lp-section-title { font-size: clamp(26px, 3vw, 38px); }
.archive-desc {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--fg-2);
  line-height: 1.85;
}

/* Pagination */
.archive-nav { margin-top: 56px; text-align: center; }
.archive-nav .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.archive-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--fg-1);
  font-family: var(--ff-display);
  font-style: italic;
  text-decoration: none;
  background-image: none;
  transition: all var(--dur-base) var(--ease-soft);
}
.archive-nav .page-numbers:hover { background: var(--ivory); background-size: 0 0; }
.archive-nav .page-numbers.current {
  background: var(--caramel-deep); color: var(--milk); border-color: var(--caramel-deep);
}

/* WordPress block defaults inside article-body */
.article-body .wp-block-image img,
.article-body .alignfull img,
.article-body .wp-block-gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.article-body .wp-block-quote {
  border-left: 3px solid var(--caramel);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  color: var(--fg-2);
  font-style: italic;
}
.article-body figure { margin: 32px 0; }
.article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 10px;
  font-family: var(--ff-display);
  font-style: italic;
}
