:root {
  --bg-deep: #14122a;
  --bg-mid: #1e1b3a;
  --accent: #c4b5fd;
  --accent2: #a5b4fc;
  --gold: #fde68a;
  --text: #f5f3ff;
  --text-soft: rgba(245, 243, 255, 0.82);
  --card-bg: rgba(30, 27, 58, 0.72);
  --card-border: rgba(196, 181, 253, 0.28);
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --font-serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #312e81 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, #4c1d95 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-deep), #0f0d1f 100%);
}

.page-stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(1px 1px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 80% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(253, 230, 138, 0.5), transparent),
    radial-gradient(1px 1px at 60% 10%, #fff, transparent);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  background: linear-gradient(to bottom, rgba(20, 18, 42, 0.92), rgba(20, 18, 42, 0.4), transparent);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
}

.site-logo__moon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fef9c3, #a78bfa 40%, #312e81);
  box-shadow: 0 0 18px rgba(196, 181, 253, 0.7);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.site-nav .nav__link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
}

.site-nav .nav__link:hover,
.site-nav .nav__link.is-active {
  color: var(--gold);
  border-bottom-color: rgba(253, 230, 138, 0.5);
}

.nav-toggle {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
}

.main {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

/* Hero */
.hero {
  padding: 48px 0 40px;
  position: relative;
  z-index: 2;
}

.hero__inner {
  text-align: center;
}

.hero__kicker {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: none;
  margin: 0 0 12px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 16px;
  background: linear-gradient(120deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 36em;
  margin: 0 auto 28px;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-search {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form__input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: rgba(15, 13, 31, 0.7);
  color: var(--text);
  font-size: 1rem;
}

.search-form__btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
}

.search-results {
  margin-top: 20px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.search-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-hit__link {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.15s;
}

.search-hit__link:hover {
  background: rgba(196, 181, 253, 0.08);
}

.search-hit__thumb {
  flex-shrink: 0;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  align-self: flex-start;
}

.search-hit__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 400 / 225;
}

.search-hit__title {
  display: block;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.search-hit__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.search-hit__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.search-hit__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--accent2);
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Sections */
.section {
  margin-top: 48px;
}

.section__h {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 20px;
  color: #fef3c7;
}

.section__more {
  margin-top: 20px;
}

.section__more a,
.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(79, 70, 229, 0.85));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--card-border);
}

/* Cards grid */
.grid-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.grid-cards--cat {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card-article__link,
.card-cat__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.card-article__link:hover,
.card-cat__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.card-article__media,
.card-cat__media {
  aspect-ratio: 400 / 225;
  overflow: hidden;
}

.card-article__img,
.card-cat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-article__body,
.card-cat__body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-article__tag {
  font-size: 0.75rem;
  color: var(--accent);
}

.card-article__title,
.card-cat__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
}

.card-article__desc,
.card-cat__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Article */
.breadcrumb {
  font-size: 0.85rem;
  padding: 20px 0 8px;
  color: var(--text-soft);
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--accent2);
}

.article-page {
  padding-bottom: 48px;
}

.article-head {
  margin-bottom: 20px;
}

.article-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.4;
  margin: 0 0 12px;
}

.article-lead {
  color: var(--accent);
  margin: 0;
  font-size: 1.05rem;
}

.article-hero__fig {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.article-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1200 / 675;
  max-height: min(56vh, 480px);
}

.article-hero__cap {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-soft);
  background: rgba(15, 13, 31, 0.55);
}

.prose {
  max-width: 44rem;
}

.article-h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: #fde68a;
}

.article-h3 {
  font-size: 1.08rem;
  margin: 24px 0 8px;
  color: var(--accent2);
}

.inline-fig {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.inline-fig__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.inline-fig figcaption {
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
  background: rgba(15, 13, 31, 0.5);
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-card figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}

.gallery-card__img {
  width: 100%;
  aspect-ratio: 1200 / 675;
  object-fit: cover;
  display: block;
  height: auto;
}

.gallery-card figcaption {
  padding: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.faq-list {
  margin-top: 12px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(15, 13, 31, 0.45);
  padding: 0 14px;
}

.faq-item__q {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__a {
  padding-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.grid-related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.card-related__link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  align-items: center;
}

.card-related__media {
  width: 88px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.card-related__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 400 / 225;
}

.card-related__title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.card-related__meta {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.page-head {
  padding: 24px 0 8px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 12px;
}

.page-desc {
  color: var(--text-soft);
  margin: 0;
  max-width: 40rem;
}

.gallery-page__grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-page__card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.gallery-page__img {
  width: 100%;
  aspect-ratio: 400 / 225;
  object-fit: cover;
  display: block;
  height: auto;
}

.gallery-page__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 16px;
}

.gallery-page__title {
  font-weight: 700;
  color: var(--gold);
}

.gallery-page__cap {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.gallery-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: rgba(15, 13, 31, 0.65);
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
}

.chip.is-active {
  background: rgba(124, 58, 237, 0.45);
  border-color: var(--accent);
}

.input-slug-filter {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--card-border);
  background: rgba(15, 13, 31, 0.7);
  color: var(--text);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 40px 0 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  border-top: 1px solid var(--card-border);
  margin-top: 40px;
}

.site-footer__note {
  font-size: 0.88rem;
  color: var(--text-soft);
  max-width: 48em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 16px 0;
}

.site-footer__links a {
  color: var(--accent2);
  font-size: 0.9rem;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: var(--text-soft);
  opacity: 0.75;
}

.sitemap-list {
  line-height: 2;
}

.link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-list a {
  color: var(--accent2);
}

.static-page .page-title {
  margin-bottom: 24px;
}

.section--related {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.section__h--sub {
  font-size: 1.15rem;
}

/* ---- トップ：フルブリード背景＋ガラスモーフィズム（siteConfig / hero-bg） ---- */
.page--landing .page-bg--landing {
  background-image: var(--hero-overlay), var(--hero-bg-image);
  background-size: cover, var(--hero-bg-size, cover);
  background-position: center, var(--hero-bg-position, center top);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #120b28;
}

@media (max-width: 768px) {
  .page--landing .page-bg--landing {
    background-attachment: scroll;
  }
}

.page--landing .page-stars--landing {
  opacity: 0.2;
  mix-blend-mode: screen;
}

.page--landing .site-header {
  background: linear-gradient(to bottom, rgba(8, 6, 24, 0.75), rgba(8, 6, 24, 0.2), transparent);
}

.site-header--landing {
  position: relative;
  z-index: 50;
}

.site-header__inner--landing {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo actions"
    "center center"
    "nav nav";
  align-items: center;
  gap: 12px 16px;
  padding: 10px 0 14px;
}

.site-header--landing .site-logo {
  grid-area: logo;
}

.site-header__theme-jump {
  grid-area: theme;
  display: none;
  color: rgba(255, 250, 255, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.site-header__theme-jump:hover {
  color: var(--gold);
  border-bottom-color: rgba(253, 230, 138, 0.35);
}

.site-header__center-search {
  grid-area: center;
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.site-header__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 900px) {
  .site-header__inner--landing {
    grid-template-columns: auto auto 1fr auto;
    grid-template-areas: "logo theme center actions";
  }
  .site-header__theme-jump {
    display: inline;
  }
  .site-header__center-search {
    justify-self: center;
    max-width: 320px;
  }
}

.header-search-glass {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(40, 32, 72, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-search-glass__ico {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-shrink: 0;
}

.header-search-glass__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}

.header-search-glass__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-history {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 16, 48, 0.4);
  color: rgba(255, 250, 255, 0.95);
  font-size: 0.82rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.btn-history:hover {
  border-color: rgba(253, 230, 138, 0.45);
  color: var(--gold);
}

.search-history-popover {
  position: absolute;
  top: calc(100% - 4px);
  right: max(16px, calc((100vw - 1120px) / 2 + 16px));
  width: min(280px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 14px;
  background: rgba(22, 18, 48, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.search-history-popover__title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--accent);
}

.search-history-popover__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-history-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.search-history-link:hover {
  background: rgba(196, 181, 253, 0.2);
}

.search-history-popover__empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.site-nav--landing {
  grid-area: nav;
  justify-content: flex-end;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

@media (max-width: 899px) {
  .site-nav--landing.site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 0;
  }
  .site-nav--landing.site-nav.is-open {
    display: flex;
  }
}

.main--landing {
  padding-bottom: 0;
}

.landing-hero {
  position: relative;
  z-index: 2;
  min-height: min(78vh, 620px);
  padding: 24px 0 56px;
  display: flex;
  align-items: center;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px 32px;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
  }
  .landing-hero__visual-spacer {
    display: none;
  }
  .landing-hero__copy {
    text-align: center;
  }
  .landing-hero__features {
    justify-content: center;
  }
}

.landing-hero__visual-spacer {
  min-height: 120px;
}

.landing-hero__title {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 28px rgba(79, 70, 229, 0.35);
}

.landing-hero__sub {
  margin: 0 0 22px;
  font-size: 1.02rem;
  color: rgba(255, 249, 255, 0.88);
  max-width: 28em;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .landing-hero__copy {
    justify-self: end;
    text-align: right;
    max-width: 520px;
  }
  .landing-hero__sub {
    margin-left: auto;
  }
  .hero-search--glass {
    margin-left: auto;
  }
}

.hero-search--glass {
  max-width: 100%;
  width: min(440px, 100%);
}

.search-form--glass {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 16px;
  border-radius: 999px;
  background: rgba(88, 70, 140, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(40, 20, 80, 0.35);
}

.search-form__ico {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-shrink: 0;
}

.search-form--glass .search-form__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 12px 8px;
  outline: none;
}

.search-form--glass .search-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-form--glass .search-form__btn {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.35);
}

.search-results--glass {
  margin-top: 14px;
  background: rgba(16, 12, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.landing-hero__features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.landing-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 200px;
  text-align: left;
}

.landing-feat__icon {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.4;
  opacity: 0.9;
}

.landing-feat__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: rgba(255, 250, 255, 0.85);
  line-height: 1.45;
}

.landing-feat__text strong {
  font-size: 0.95rem;
  color: #fff;
}

.landing-body-wrap {
  position: relative;
  z-index: 2;
  padding: 8px 0 40px;
  margin-top: -24px;
}

.section--glass {
  padding: 22px 20px 26px;
  margin-top: 20px;
  border-radius: 18px;
  background: rgba(18, 14, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.section__h--landing {
  text-align: center;
  margin-bottom: 22px;
  color: #fef3c7;
}

.section--theme {
  margin-top: 0;
}

.theme-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
}

.theme-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  padding: 18px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.25);
}

.theme-card__shine {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
}

.theme-card__title {
  position: relative;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.theme-card__desc {
  position: relative;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 252, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.theme-card--love {
  background: linear-gradient(145deg, rgba(190, 24, 93, 0.85), rgba(67, 56, 202, 0.75));
}
.theme-card--work {
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.88), rgba(49, 46, 129, 0.8));
}
.theme-card--people {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.82), rgba(30, 27, 75, 0.88));
}
.theme-card--money {
  background: linear-gradient(145deg, rgba(180, 83, 9, 0.82), rgba(113, 63, 18, 0.85));
}
.theme-card--animal {
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.75), rgba(59, 130, 246, 0.65));
}
.theme-card--nature {
  background: linear-gradient(145deg, rgba(14, 116, 144, 0.8), rgba(30, 58, 138, 0.82));
}
.theme-card--place {
  background: linear-gradient(145deg, rgba(100, 116, 139, 0.85), rgba(71, 85, 105, 0.82));
}
.theme-card--health {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.55), rgba(14, 116, 144, 0.78));
}

.landing-footnote {
  margin: 32px 8px 0;
  padding: 16px 12px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 248, 255, 0.78);
  line-height: 1.75;
}

.page--landing .section--glass .card-article__link,
.page--landing .section--glass .card-cat__link {
  background: rgba(12, 10, 32, 0.35);
}

.page--landing .site-footer {
  margin-top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
}
