@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;800&display=swap');

.lq-shell {
  --page-bg: #f5f2ea;
  --paper: #fbfaf6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(23, 26, 31, 0.08);
  --text: #171a1f;
  --muted: rgba(23, 26, 31, 0.62);
  --muted-2: rgba(23, 26, 31, 0.42);
  --primary: #22324a;
  --accent: #b88453;
  --ambient: rgba(238, 225, 205, 0.55);
  --atmo-sky: rgba(217, 228, 242, 0.78);
  --atmo-peach: rgba(246, 196, 139, 0.56);
  --atmo-blush: rgba(233, 221, 228, 0.48);
  --atmo-mint: rgba(16, 163, 127, 0.16);
  --shadow: 0 18px 48px rgba(28, 31, 36, 0.08);
  --shadow-hover: 0 22px 58px rgba(28, 31, 36, 0.11);
  color: var(--text);
  width: min(calc(100vw - 32px), 1200px);
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 0 64px;
  position: relative;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
body.page-template-page-lq-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 228, 242, 0.2), transparent 32vw),
    radial-gradient(circle at 92% 4%, rgba(246, 196, 139, 0.18), transparent 30vw),
    linear-gradient(180deg, #fbfaf6 0%, var(--page-bg) 52%, #f8f6ef 100%);
}
body.page-template-page-lq-shell .wp-site-blocks,
body.page-template-page-lq-shell main.wp-block-group,
body.page-template-page-lq-shell .entry-content.wp-block-post-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.page-template-page-lq-shell .entry-content.wp-block-post-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.lq-shell * { box-sizing: border-box; min-width: 0; }
.lq-shell a { color: inherit; text-decoration: none; }
.lq-surface {
  border-radius: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.76));
  border: 1px solid rgba(23, 26, 31, 0.06);
  box-shadow: var(--shadow);
}
.lq-topbar {
  position: relative;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin: 0 auto 18px;
  width: min(100%, 1200px);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(124%);
  -webkit-backdrop-filter: blur(18px) saturate(124%);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(251, 250, 246, 0.7));
  border: 1px solid rgba(23, 26, 31, 0.06);
  box-shadow: 0 14px 34px rgba(28, 31, 36, 0.06);
}
.lq-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.lq-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.9), transparent 42%),
    linear-gradient(160deg, #20252c, #4d5560);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  position: relative;
}
.lq-brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.6px solid rgba(255,255,255,0.74);
  border-radius: 8px;
}
.lq-brand-copy strong { display: block; font-size: 15px; line-height: 1.2; }
.lq-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.lq-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease;
}
.lq-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease;
}
.lq-nav-link:hover,
.lq-nav-link.is-active { color: var(--text); }
.lq-nav-link:hover::after,
.lq-nav-link.is-active::after { background: rgba(24, 27, 31, 0.9); }
.lq-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lq-nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.lq-nav-item--submenu:hover .lq-nav-toggle,
.lq-nav-item--submenu:focus-within .lq-nav-toggle {
  color: var(--text);
}
.lq-nav-item--submenu {
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.lq-nav-item--submenu:hover .lq-nav-toggle::after,
.lq-nav-item--submenu:focus-within .lq-nav-toggle::after {
  background: rgba(24, 27, 31, 0.9);
}
.lq-nav-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 144px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 246, 0.94));
  border: 1px solid rgba(23, 26, 31, 0.08);
  box-shadow: 0 18px 34px rgba(28, 31, 36, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.lq-nav-item--submenu:hover .lq-nav-submenu,
.lq-nav-item--submenu:focus-within .lq-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lq-nav-submenu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.lq-nav-submenu-link:hover {
  color: var(--text);
  background: rgba(23, 26, 31, 0.05);
}
.lq-page-main {
  display: grid;
  gap: 22px;
}
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 260ms ease, transform 260ms ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}
.lq-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lq-page-header {
  padding: 28px 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(184, 132, 83, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(251,250,246,0.78));
}
.lq-page-header h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.08em;
  font-weight: 800;
}
.lq-page-intro {
  margin: 16px 0 0;
  max-width: 40em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}
.lq-page-panel {
  padding: 46px 32px 8px;
}
.lq-page-panel--about {
  padding-bottom: 88px;
}
.lq-row-list {
  display: grid;
  gap: 0;
}
.lq-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.lq-row--single {
  grid-template-columns: minmax(0, 1fr);
}
.lq-row:first-child {
  border-top: none;
  padding-top: 0;
}
.lq-row-date {
  padding-top: 4px;
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.lq-row-copy strong {
  display: block;
  font-size: 19px;
  line-height: 1.42;
  letter-spacing: -0.02em;
}
.lq-row-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.lq-row-meta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lq-empty {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.lq-project-list {
  display: grid;
  gap: 0;
}
.lq-page-panel--brief-images {
  padding-top: 34px;
  padding-bottom: 40px;
}
.lq-brief-image-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  max-width: 880px;
  margin: 0 auto 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.lq-brief-image-summary strong {
  display: block;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.04em;
}
.lq-brief-image-summary p {
  margin: 8px 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.lq-brief-image-summary-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24, 27, 31, 0.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.lq-brief-image-stack {
  display: grid;
  gap: 30px;
  max-width: 880px;
  margin: 0 auto;
}
.lq-brief-image-card {
  display: grid;
  gap: 14px;
}
.lq-brief-image-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lq-brief-image-copy {
  min-width: 0;
}
.lq-brief-image-meta strong {
  display: block;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.lq-brief-image-caption {
  margin: 8px 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.lq-brief-image-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.lq-brief-image-meta time {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.lq-brief-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(24, 27, 31, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.lq-brief-image-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.94);
  border-color: rgba(34, 50, 74, 0.16);
}
.lq-brief-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(24, 27, 31, 0.07);
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 228, 242, 0.5), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(246, 196, 139, 0.32), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,246,241,0.82));
  box-shadow: 0 18px 40px rgba(28, 31, 36, 0.06);
}
.lq-brief-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.lq-brief-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(247,245,239,0.52)),
    repeating-linear-gradient(90deg, rgba(23,26,31,0.022) 0, rgba(23,26,31,0.022) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(0deg, rgba(23,26,31,0.018) 0, rgba(23,26,31,0.018) 1px, transparent 1px, transparent 48px);
}
.lq-brief-image-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 27, 31, 0.08);
  background: rgba(255,255,255,0.74);
}
.lq-brief-image-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 30px auto 0;
}
.lq-project-row {
  display: block;
  padding: 34px 0 36px;
  border-top: 1px solid var(--line);
}
.lq-project-row:first-child {
  border-top: none;
  padding-top: 0;
}
.lq-project-heading {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.lq-project-row strong {
  display: block;
  font-size: 24px;
  line-height: 1.24;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}
.lq-project-row p {
  margin: 18px 0 0;
  max-width: 72em;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}
.lq-project-keywords {
  display: block;
  margin: 0 0 3px;
  color: rgba(23, 26, 31, 0.42);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
}
a.lq-row:hover strong,
a.lq-hero-topic:hover strong,
a.lq-project-row:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 1.2px;
  text-underline-offset: 0.16em;
}
.lq-about-copy {
  display: grid;
  max-width: 720px;
  gap: 16px;
  padding-top: 0;
  color: var(--muted);
}
.lq-about-copy br {
  display: none;
}
.lq-about-lede {
  max-width: 42em;
  margin: 0;
  color: rgba(23, 26, 31, 0.76);
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.01em;
}
.lq-about-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.lq-about-sep {
  display: none;
}
.lq-about-links a,
.lq-section-header a,
.lq-button-secondary,
.lq-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(24, 27, 31, 0.08);
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.lq-about-links a:hover,
.lq-section-header a:hover,
.lq-button-secondary:hover,
.lq-text-link:hover,
.lq-button-primary:hover {
  transform: translateY(-1px);
}
.lq-about-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(24, 27, 31, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: rgba(23, 26, 31, 0.72) !important;
  -webkit-text-fill-color: rgba(23, 26, 31, 0.72) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}
.lq-about-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 27, 31, 0.14);
  background: rgba(255,255,255,0.92);
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
}
.lq-about-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 138px);
  gap: 12px;
  align-items: start;
  margin-top: 2px;
}
.lq-about-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(24, 27, 31, 0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.62);
}
.lq-about-qr img {
  width: 122px;
  height: 122px;
  display: block;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(24, 27, 31, 0.07);
  border-radius: 10px;
  background: #fff;
}
.lq-about-qr span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.lq-home {
  display: grid;
  gap: 24px;
}
.lq-home-hero {
  position: relative;
  padding: 30px 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fffaf1 0%, #f8f6f1 46%, #eef4fb 100%);
}
.lq-home-hero > * {
  position: relative;
  z-index: 2;
}
.lq-home-hero::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    radial-gradient(ellipse 68% 72% at 18% 76%, var(--atmo-peach), transparent 62%),
    radial-gradient(ellipse 54% 60% at 34% 16%, var(--atmo-blush), transparent 64%),
    radial-gradient(ellipse 64% 76% at 90% 14%, var(--atmo-sky), transparent 60%),
    radial-gradient(ellipse 42% 48% at 76% 92%, var(--atmo-mint), transparent 64%);
  filter: blur(18px) saturate(112%);
  transform: scale(1.02);
  z-index: 0;
}
.lq-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    repeating-linear-gradient(90deg, rgba(23,26,31,0.016) 0, rgba(23,26,31,0.016) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(0deg, rgba(23,26,31,0.012) 0, rgba(23,26,31,0.012) 1px, transparent 1px, transparent 56px);
  pointer-events: none;
  z-index: 1;
}
.lq-home-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(251,250,246,0.62));
  border: 1px solid rgba(23, 26, 31, 0.06);
  box-shadow: 0 12px 28px rgba(28, 31, 36, 0.06);
  margin-bottom: 26px;
}
.lq-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}
.lq-home-stage { display: grid; }
.lq-home-switch button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.lq-home-switch button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(34, 50, 74, 0.16);
}
.lq-hero-pane {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.lq-hero-pane.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.lq-home-copy {
  max-width: 580px;
  padding: 6px 0 0 6px;
}
.lq-hero-date {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lq-hero-date--placeholder {
  visibility: hidden;
}
.lq-home-copy h1,
.lq-home-copy h2 {
  margin: 12px 0 0;
  max-width: 100%;
  min-height: 1.05em;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.08em;
  font-weight: 800;
  white-space: nowrap;
}
.lq-home-copy p {
  margin: 20px 0 0;
  max-width: 34em;
  min-height: 3.6em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.lq-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.lq-button-primary,
.lq-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  font-weight: 700;
  white-space: nowrap;
}
.lq-button-primary {
  background: var(--primary);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 12px 24px rgba(34, 50, 74, 0.16);
}
.lq-home-side {
  display: grid;
  align-content: start;
}
.lq-hero-card {
  padding: 20px 22px;
  min-height: 408px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.52), rgba(255,248,238,0.28) 46%, rgba(237,247,249,0.32));
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px) saturate(106%);
  -webkit-backdrop-filter: blur(10px) saturate(106%);
  box-shadow: 0 16px 36px rgba(28, 31, 36, 0.045);
}
.lq-hero-topic {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 0;
  padding: 16px 0;
  align-items: baseline;
  border-top: 1px solid rgba(24, 27, 31, 0.08);
}
.lq-hero-topic:first-of-type {
  border-top: none;
  padding-top: 6px;
}
.lq-hero-topic em {
  display: block;
  width: 36px;
  height: 24.8px;
  line-height: 24.8px;
  justify-self: start;
  text-align: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(23,26,31,0.05));
  color: var(--muted-2);
  font-size: 12px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
.lq-hero-topic > div {
  min-width: 0;
  padding-top: 0;
}
.lq-hero-topic strong {
  display: block;
  font-size: 17px;
  line-height: 1.46;
  font-weight: 600;
  text-align: left;
}
.lq-hero-topic-note {
  color: var(--muted);
  font-weight: 500;
}
.lq-hero-topic p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lq-home-section {
  padding: 24px 32px 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(251,250,246,0.74));
}
.lq-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.lq-section-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.lq-row-list--compact .lq-row {
  padding: 20px 0;
}
.lq-project-carousel {
  position: relative;
  margin-top: 8px;
}
.lq-project-window {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}
.lq-project-window::before,
.lq-project-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 40px;
  pointer-events: none;
}
.lq-project-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(251,250,246,0.94), transparent);
}
.lq-project-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(251,250,246,0.94), transparent);
}
.lq-project-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 358px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.lq-project-rail::-webkit-scrollbar {
  display: none;
}
.lq-project-tile {
  min-height: 340px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(247,245,239,0.68));
  border: 1px solid rgba(24, 27, 31, 0.07);
  box-shadow: 0 12px 28px rgba(24, 27, 31, 0.05);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.lq-project-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 50, 74, 0.18);
  box-shadow: var(--shadow-hover);
}
.lq-project-tile strong {
  display: block;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.lq-project-tile p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.78;
  flex: 1;
}
.lq-project-tile em {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted-2);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
}
.lq-project-arrow {
  appearance: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 27, 31, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(28, 31, 36, 0.08);
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}
.lq-project-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
}
.lq-project-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}
.lq-project-arrow--prev { left: -14px; }
.lq-project-arrow--next { right: -14px; }
.lq-home-hero,
.lq-home-section {
  scroll-margin-top: 108px;
}
@media (max-width: 980px) {
  .lq-topbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lq-home-grid {
    grid-template-columns: 1fr;
  }
  .lq-home-copy h1,
  .lq-home-copy h2 {
    max-width: 12ch;
    min-height: 2.1em;
    white-space: normal;
  }
}
@media (max-width: 720px) {
  .lq-shell {
    width: calc(100vw - 20px);
    max-width: 100%;
    padding: 12px 0 54px;
  }
  .lq-topbar {
    padding: 12px 14px;
  }
  .lq-nav {
    gap: 18px;
  }
  .lq-nav-submenu {
    top: calc(100% + 8px);
  }
  .lq-home-hero,
  .lq-home-section,
  .lq-page-header,
  .lq-page-panel {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lq-page-panel--about {
    padding-bottom: 64px;
  }
  .lq-page-intro {
    margin-top: 14px;
    font-size: 15px;
  }
  .lq-home-copy h1,
  .lq-home-copy h2 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .lq-row,
  .lq-row--single,
  .lq-project-row {
    grid-template-columns: 1fr;
  }
  .lq-project-row {
    gap: 18px;
    padding: 28px 0;
  }
  .lq-brief-image-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .lq-brief-image-summary-meta {
    justify-self: start;
  }
  .lq-brief-image-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .lq-brief-image-side {
    justify-items: start;
  }
  .lq-project-heading {
    display: block;
  }
  .lq-project-keywords {
    margin-top: 8px;
    white-space: normal;
  }
  .lq-project-rail {
    grid-auto-columns: minmax(240px, 82vw);
  }
  .lq-project-arrow {
    width: 38px;
    height: 38px;
  }
  .lq-project-arrow--prev { left: 6px; }
  .lq-project-arrow--next { right: 6px; }
  .lq-hero-card,
  .lq-home-switch {
    width: 100%;
  }
  .lq-hero-topic {
    grid-template-columns: 1fr;
  }
  .lq-hero-topic em {
    display: none;
  }
}
@media (max-width: 430px) {
  .lq-about-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .lq-about-qr img {
    width: 112px;
    height: 112px;
  }
}
.lq-tools-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  padding-bottom: 28px;
}
.lq-tool-feature {
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,245,239,0.7));
  border: 1px solid rgba(24, 27, 31, 0.07);
  box-shadow: 0 12px 30px rgba(28, 31, 36, 0.052);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.lq-tool-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 50, 74, 0.16);
  box-shadow: 0 18px 42px rgba(28, 31, 36, 0.09);
}
.lq-tool-feature:not(a) {
  cursor: default;
}
.lq-tool-feature:not(a):hover {
  transform: none;
  border-color: rgba(24, 27, 31, 0.07);
  box-shadow: 0 12px 30px rgba(28, 31, 36, 0.052);
}
.lq-tool-cover {
  position: relative;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 27, 31, 0.065);
  background: #f3f0e8;
}
.lq-tool-cover--image {
  background: #f3f0e8;
}
.lq-tool-cover--image::before,
.lq-tool-cover--image::after {
  display: none;
}
.lq-tool-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lq-tool-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.84), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(217,228,242,0.72), transparent 30%),
    radial-gradient(circle at 72% 88%, rgba(246,196,139,0.48), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(238,233,222,0.86));
}
.lq-tool-cover::after {
  content: "";
  position: absolute;
  inset: 20% 18%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.64)),
    repeating-linear-gradient(90deg, rgba(23,26,31,0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(23,26,31,0.035) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(24, 27, 31, 0.08);
  box-shadow: 0 18px 34px rgba(24, 27, 31, 0.08);
}
.lq-tool-cover--danmu::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.9), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(246,196,139,0.54), transparent 28%),
    radial-gradient(circle at 20% 86%, rgba(217,228,242,0.7), transparent 32%),
    linear-gradient(135deg, #fbfaf6, #ece6da 54%, #f6efe4);
}
.lq-tool-cover--danmu .lq-tool-screen-line:nth-child(1) { top: 28%; left: 12%; width: 64%; }
.lq-tool-cover--danmu .lq-tool-screen-line:nth-child(2) { top: 45%; right: 10%; width: 58%; }
.lq-tool-cover--danmu .lq-tool-screen-line:nth-child(3) { top: 63%; left: 18%; width: 46%; }
.lq-tool-cover--writing::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.9), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(16,163,127,0.17), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(217,228,242,0.78), transparent 30%),
    linear-gradient(135deg, #fbfaf6, #edf3f6 52%, #f4eadf);
}
.lq-tool-cover--writing .lq-tool-screen-line:nth-child(1) { top: 30%; left: 15%; width: 38%; }
.lq-tool-cover--writing .lq-tool-screen-line:nth-child(2) { top: 46%; left: 15%; width: 62%; }
.lq-tool-cover--writing .lq-tool-screen-line:nth-child(3) { top: 62%; left: 15%; width: 50%; }
.lq-tool-screen-line {
  position: absolute;
  z-index: 2;
  height: 11px;
  border-radius: 999px;
  background: rgba(34, 50, 74, 0.64);
  box-shadow: 0 10px 20px rgba(34, 50, 74, 0.1);
}
.lq-tool-copy {
  padding: 13px 15px 15px;
}
.lq-tool-copy strong {
  display: block;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 800;
}
.lq-tool-copy p {
  margin: 7px 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 13.2px;
  line-height: 1.56;
}
@media (max-width: 980px) {
  .lq-tools-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .lq-tools-showcase {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }
  .lq-tool-feature {
    border-radius: 12px;
  }
  .lq-tool-copy {
    padding: 16px;
  }
  .lq-tool-copy strong {
    font-size: clamp(18px, 6vw, 23px);
  }
  .lq-tool-copy p {
    font-size: 14.5px;
    line-height: 1.62;
  }
}

body.tag {
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 228, 242, 0.2), transparent 32vw),
    radial-gradient(circle at 92% 4%, rgba(246, 196, 139, 0.18), transparent 30vw),
    linear-gradient(180deg, #fbfaf6 0%, #f5f2ea 52%, #f8f6ef 100%);
}
body.tag .wp-site-blocks,
body.tag main.wp-block-group {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent;
}
body.tag .wp-site-blocks > * {
  margin-block-start: 0 !important;
}
.lq-topbar .lq-language {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.lq-topbar .language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid rgba(23,26,31,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.lq-topbar .language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(23,26,31,.46);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}
.lq-topbar .language-option.is-active {
  color: var(--text,#171a1f);
  background: rgba(23,26,31,.06);
}
.lq-topbar .language-option:not(.is-active):hover {
  color: var(--text,#171a1f);
  background: rgba(23,26,31,.05);
}
.lq-nav-item--submenu.is-open .lq-nav-toggle {
  color: var(--text);
}
.lq-nav-item--submenu.is-open .lq-nav-toggle::after {
  background: rgba(24, 27, 31, 0.9);
}
.lq-nav-item--submenu.is-open .lq-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 720px) {
  .lq-topbar .lq-language { margin-left: 0; }
  .lq-topbar .language-switch { min-height: 32px; padding: 0 7px; }
  .lq-topbar .language-option { padding-inline: 7px; font-size: 11px; }
}
