:root {
  --zl-primary: #171717;
  --zl-accent: #b89555;
  --zl-bg: #f8f4ec;
  --zl-text: #171717;
  --zl-surface: #fffaf1;
  --zl-surface-alt: #f2e7d5;
  --zl-card-border: #e3d4bb;
  --zl-muted: #746a5d;
  --zl-soft: #f5ead8;
  --zl-accent-soft: #eee0c2;
  --zl-faint: color-mix(in srgb, var(--zl-text) 7%, transparent);
  --zl-line: color-mix(in srgb, var(--zl-card-border) 72%, var(--zl-text) 8%);
  --zl-card: color-mix(in srgb, var(--zl-surface) 82%, var(--zl-soft) 18%);
  --zl-shadow: 0 22px 70px rgba(36, 30, 20, 0.105);
  --zl-soft-shadow: 0 10px 34px rgba(36, 30, 20, 0.065);
  --zl-width: 1060px;
  --zl-body-size: 16px;
  --zl-body-line: 1.82;
  --zl-hero-title: 72px;
  --zl-single-title: 46px;
  --zl-post-card-title: 28px;
  --zl-content-heading: 34px;
  --zl-heading-weight: 690;
  --zl-heading-tight: -0.032em;
  --zl-heading-line: 1.18;
  --zl-hero-scale: .92;
}

* { box-sizing: border-box; }
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  overflow-x: hidden;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
  color: var(--zl-text);
  font-size: var(--zl-body-size);
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--zl-surface) 46%, transparent), transparent 38%),
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--zl-accent-soft) 46%, transparent), transparent 34rem),
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--zl-primary) 8%, transparent), transparent 30rem),
    var(--zl-bg);
  line-height: var(--zl-body-line);
  text-rendering: geometricPrecision;
}
.font-style-apple { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif; }
.font-style-system { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif; }
.font-style-serif { font-family: Georgia, "Times New Roman", "Noto Serif SC", SimSun, serif; --zl-heading-weight: 620; --zl-heading-tight: -0.018em; --zl-heading-line: 1.24; --zl-hero-scale: .96; }
.font-style-rounded { font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif; --zl-heading-weight: 660; --zl-heading-tight: -0.024em; --zl-heading-line: 1.2; --zl-hero-scale: .9; }
.font-style-apple, .font-style-system { --zl-heading-weight: 680; --zl-heading-tight: -0.03em; --zl-heading-line: 1.2; --zl-hero-scale: .9; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(color-mix(in srgb, var(--zl-text) 3%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--zl-text) 2.5%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--zl-width), calc(100% - 32px));
  max-width: calc(100% - 32px);
  min-height: 58px;
  margin: 0 auto;
  padding: 10px 12px 10px 10px;
  border: 1px solid color-mix(in srgb, var(--zl-card-border) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--zl-bg) 88%, var(--zl-surface) 12%);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 12px 38px rgba(23, 23, 23, 0.06);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 850; letter-spacing: -.02em; }
.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--zl-primary);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 8px 20px rgba(23,23,23,.16);
}
.custom-logo { max-height: 42px; width: auto; }

.site-nav { min-width: 0; flex: 0 1 auto; }
.site-nav ul { display: flex; gap: 2px; align-items: center; margin: 0; padding: 0; list-style: none; flex-wrap: nowrap; }
.site-nav li { flex: 0 0 auto; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 9em;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--zl-muted);
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: .2s ease;
}
.site-nav a:hover { color: var(--zl-primary); background: var(--zl-accent-soft); }
.header-style-solid-pill .site-header {
  border-color: rgba(23, 23, 23, 0.08);
  background: color-mix(in srgb, var(--zl-bg) 94%, white 6%);
  box-shadow: 0 14px 34px rgba(23, 23, 23, 0.09);
}
.header-style-glass-pill .site-header {
  background: rgba(248, 244, 236, 0.76);
  box-shadow: 0 12px 38px rgba(23, 23, 23, 0.06);
}
.header-style-top-bar .site-header {
  top: 0;
  width: 100%;
  max-width: none;
  padding: 12px max(18px, calc((100% - var(--zl-width)) / 2));
  border-width: 0 0 1px;
  border-radius: 0;
  background: color-mix(in srgb, var(--zl-bg) 96%, white 4%);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.055);
}
.site-nav .wp-menu + .fallback-menu { margin-left: 6px; padding-left: 8px; border-left: 1px solid var(--zl-line); }
.nav-toggle { display: none; border: 0; background: var(--zl-primary); color: #fff; border-radius: 999px; padding: 8px 14px; cursor: pointer; }

.section-wrap { width: min(var(--zl-width), calc(100% - 36px)); margin: 0 auto; }
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(310px, .74fr); gap: clamp(28px, 6vw, 72px); align-items: center; min-height: calc(100vh - 74px); padding: 88px 0 62px; }
.eyebrow, .section-label { margin: 0 0 12px; color: var(--zl-accent); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(38px, 5.6vw, calc(var(--zl-hero-title) * var(--zl-hero-scale))); font-weight: var(--zl-heading-weight); line-height: calc(var(--zl-heading-line) - .05); letter-spacing: calc(var(--zl-heading-tight) - .012em); }
.hero-subtitle { max-width: 690px; margin: 0; color: var(--zl-muted); font-size: clamp(18px, 2.2vw, 23px); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 850; transition: .25s ease; }
.button.primary { color: #fff; background: var(--zl-primary); box-shadow: 0 14px 30px rgba(17, 17, 17, .18); }
.button.ghost { border: 1px solid var(--zl-line); background: var(--zl-surface); }
.button:hover { transform: translateY(-2px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-stats span { min-width: 116px; padding: 12px 14px; border: 1px solid var(--zl-line); border-radius: 18px; background: var(--zl-soft); color: var(--zl-muted); font-size: 13px; }
.hero-stats strong { display: block; color: var(--zl-primary); font-size: 20px; line-height: 1.1; }

.hero-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--zl-card-border) 62%, transparent);
  border-radius: 44px;
  background: linear-gradient(145deg, var(--zl-card), var(--zl-soft));
  box-shadow: var(--zl-shadow);
  isolation: isolate;
}
.hero-card::after { content: ""; position: absolute; inset: 18px; border: 1px solid var(--zl-card-border); border-radius: 32px; pointer-events: none; }
.hero-card span, .hero-card strong, .hero-card em { position: absolute; z-index: 2; font-style: normal; font-weight: calc(var(--zl-heading-weight) + 80); letter-spacing: calc(var(--zl-heading-tight) - .016em); }
.hero-card span { top: 48px; left: 34px; font-size: clamp(40px, 4.6vw, 58px); }
.hero-card strong { right: 28px; top: 150px; font-size: clamp(52px, 5.4vw, 78px); color: var(--zl-accent); }
.hero-card em { left: 46px; bottom: 48px; font-size: clamp(48px, 5.4vw, 70px); }
.hero-portrait { position: absolute; right: 28px; bottom: 26px; z-index: 1; width: 44%; aspect-ratio: 4/5; object-fit: cover; border-radius: 30px; opacity: .9; filter: saturate(.92); }
.orbit { position: absolute; border-radius: 999px; border: 1px solid rgba(17,24,39,.11); animation: float 7s ease-in-out infinite; }
.orbit.one { width: 230px; height: 230px; right: -54px; bottom: -34px; background: var(--zl-accent-soft); }
.orbit.two { width: 136px; height: 136px; left: 44px; top: 148px; animation-delay: -2.4s; background: var(--zl-surface-alt); }

.split-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(24px, 5vw, 54px); align-items: end; padding: clamp(64px, 7vw, 76px) 0 0; border-top: 1px solid var(--zl-line); }
h1, h2, h3 { color: var(--zl-text); font-weight: var(--zl-heading-weight); text-wrap: balance; }
h2 { margin: 0; font-size: clamp(28px, 3.8vw, 44px); line-height: var(--zl-heading-line); letter-spacing: var(--zl-heading-tight); }
.lead-text { margin: 0; color: var(--zl-muted); font-size: clamp(18px, 2vw, 24px); line-height: 1.78; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: clamp(26px, 3vw, 30px) 0 clamp(68px, 7vw, 82px); }
.glass-card, .work-card, .post-card a, .feature-item, .sidebar-card, .related-grid a {
  border: 1px solid var(--zl-card-border);
  background: var(--zl-card);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: var(--zl-soft-shadow);
}
.glass-card { min-height: 212px; padding: 24px; border-radius: 28px; transition: .25s ease; }
.glass-card:hover, .work-card:hover, .feature-item:hover, .post-card a:hover, .related-grid a:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow); }
.card-index { display: block; margin-bottom: 30px; color: var(--zl-accent); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
h3 { margin: 0 0 10px; font-size: 19px; font-weight: var(--zl-heading-weight); line-height: 1.42; letter-spacing: calc(var(--zl-heading-tight) * .72); }
p { color: var(--zl-muted); }

.section-heading { margin-bottom: 26px; }
.section-heading > p:not(.section-label),
.section-heading > div > p:not(.section-label) { max-width: 560px; margin-top: 10px; }
.section-link { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border: 1px solid var(--zl-line); border-radius: 999px; background: var(--zl-soft); color: var(--zl-muted); font-size: 14px; font-weight: 850; transition: .2s ease; }
.section-link:hover { color: #fff; background: var(--zl-primary); transform: translateY(-2px); }
.compact-heading { margin-bottom: 16px; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.latest-heading { align-items: flex-end; }
.latest-heading > div { display: grid; gap: 6px; }
.latest-heading .section-label,
.latest-heading h2,
.latest-heading p { margin-top: 0; margin-bottom: 0; }
.latest-heading .section-link { margin-bottom: 1px; }
.timeline { position: relative; padding: 8px 0 clamp(68px, 7vw, 82px); }
.timeline::before { content: ""; position: absolute; left: 138px; top: 8px; bottom: 60px; width: 1px; background: var(--zl-line); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 44px; padding: 24px 0; }
.timeline-item time { color: var(--zl-accent); font-weight: 850; }
.timeline-item div { position: relative; padding: 0 0 24px; border-bottom: 1px solid var(--zl-line); }
.timeline-item div::before { content: ""; position: absolute; left: -51px; top: 8px; width: 13px; height: 13px; border: 4px solid var(--zl-bg); border-radius: 50%; background: var(--zl-primary); box-shadow: 0 0 0 1px var(--zl-line); }
.timeline-item p { margin-bottom: 0; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-bar button { border: 1px solid var(--zl-line); border-radius: 999px; padding: 8px 14px; background: var(--zl-soft); cursor: pointer; color: var(--zl-muted); font-size: 14px; font-weight: 780; transition: .2s ease; }
.filter-bar button.active, .filter-bar button:hover { color: #fff; background: var(--zl-primary); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-bottom: clamp(70px, 7vw, 86px); }
.work-card { display: flex; flex-direction: column; min-height: 276px; padding: 18px; border-radius: 30px; transition: .25s ease; }
.work-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 18px; border-radius: 22px; border: 1px solid var(--zl-card-border); }
.work-card span { color: var(--zl-accent); font-size: 12px; font-weight: 900; letter-spacing: .05em; }
.work-card h3 { margin-top: 7px; }
.work-card p { flex: 1; margin-bottom: 18px; }
.work-card strong { margin-top: auto; font-size: 14px; }
.work-card.is-hidden { display: none; }
.work-style-minimal .work-card { box-shadow: none; background: transparent; border-color: var(--zl-line); }

.feature-list { display: grid; gap: 12px; padding-bottom: clamp(70px, 7vw, 88px); }
.feature-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 24px; align-items: center; padding: 22px; border-radius: 28px; transition: .25s ease; }
.feature-item img { width: 86px; aspect-ratio: 1; object-fit: cover; border-radius: 20px; }
.feature-item span { color: var(--zl-accent); font-weight: 950; }
.feature-item p { margin: 0; }
.feature-item em { font-style: normal; font-weight: 850; }

.latest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 14px; padding-bottom: clamp(70px, 7vw, 86px); }
.latest-card a { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--zl-card-border); border-radius: 30px; background: var(--zl-card); box-shadow: var(--zl-soft-shadow); transition: .25s ease; }
.latest-card a:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow); }
.latest-card figure { margin: 0; overflow: hidden; border-bottom: 1px solid var(--zl-card-border); }
.latest-card figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.latest-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.latest-card h3 { margin: 8px 0 8px; font-size: clamp(19px, 2vw, 24px); font-weight: var(--zl-heading-weight); line-height: 1.3; letter-spacing: var(--zl-heading-tight); }
.latest-card p { margin: 0 0 16px; line-height: 1.58; }
.latest-card strong { margin-top: auto; font-size: 14px; line-height: 1.35; }

.site-footer {
  --footer-space: clamp(38px, 5vw, 64px);
  position: relative;
  width: min(var(--zl-width), calc(100% - 36px));
  margin: var(--footer-space) auto 0;
  padding: 28px 0 38px;
  border-top: 1px solid color-mix(in srgb, var(--zl-line) 76%, transparent);
  color: var(--zl-muted);
}
.site-footer.footer-spacing-none { --footer-space: 0px; }
.site-footer.footer-spacing-tight { --footer-space: clamp(22px, 3vw, 34px); }
.site-footer.footer-spacing-normal { --footer-space: clamp(38px, 5vw, 64px); }
.site-footer.footer-spacing-airy { --footer-space: clamp(68px, 8vw, 108px); }
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(220px, 46vw);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--zl-accent), transparent);
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}
.footer-main { min-width: 0; }
.footer-badge { margin: 0 0 8px; color: var(--zl-accent); font-size: 11px; font-weight: 920; letter-spacing: .12em; text-transform: uppercase; }
.footer-main p:not(.footer-badge) { max-width: 600px; margin: 0; color: var(--zl-muted); font-size: 13px; line-height: 1.72; }
.footer-main small { display: block; margin-top: 12px; color: color-mix(in srgb, var(--zl-muted) 70%, transparent); font-size: 12px; font-weight: 720; }
.footer-main .footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.footer-legal span + span::before { content: "|"; margin-right: 10px; color: color-mix(in srgb, var(--zl-muted) 42%, transparent); font-weight: 500; }
.footer-legal a { color: inherit; text-decoration: none; transition: color .2s ease; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--zl-accent); text-decoration: underline; text-underline-offset: 3px; }
.footer-social-panel { display: grid; gap: 10px; justify-items: end; min-width: 0; }
.footer-social-head { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; color: var(--zl-muted); }
.footer-social-head span { color: var(--zl-primary); font-size: 13px; font-weight: 860; letter-spacing: -0.01em; }
.footer-social-head em { color: color-mix(in srgb, var(--zl-muted) 72%, transparent); font-style: normal; font-size: 11px; font-weight: 780; }
.footer-social-grid { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 360px; }
.footer-social-link {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: color-mix(in srgb, var(--zl-primary) 72%, var(--zl-muted));
  border-radius: 999px;
  outline: 0;
  opacity: .82;
  transition: transform .2s ease, color .2s ease, opacity .2s ease, background .2s ease;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  color: var(--zl-primary);
  opacity: 1;
  background: color-mix(in srgb, var(--zl-accent-soft) 68%, transparent);
}
.footer-social-link:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, var(--zl-accent) 28%, transparent); }
.footer-social-icon { display: grid; width: 34px; height: 34px; place-items: center; overflow: hidden; border-radius: 999px; }
.footer-social-icon img { width: 20px; height: 20px; object-fit: contain; }
.footer-social-svg { width: 19px; height: 19px; fill: currentColor; }
.footer-social-svg path[stroke] { fill: none; }
.footer-social-copy { display: none; }
.footer-layout-compact-line { padding: 18px 0 28px; }
.footer-layout-compact-line .footer-shell { grid-template-columns: auto 1fr auto; gap: 16px; }
.footer-layout-compact-line .footer-main { display: contents; }
.footer-layout-compact-line .footer-badge { margin: 0; white-space: nowrap; }
.footer-layout-compact-line .footer-main p:not(.footer-badge) { max-width: 520px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-layout-compact-line .footer-main small { margin: 0; white-space: nowrap; }
.footer-layout-compact-line .footer-legal { flex-wrap: nowrap; }
.footer-layout-compact-line .footer-social-head { display: none; }
.footer-layout-centered { text-align: center; }
.footer-layout-centered::before { left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--zl-accent), transparent); }
.footer-layout-centered .footer-shell { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
.footer-layout-centered .footer-main p:not(.footer-badge) { margin-inline: auto; }
.footer-layout-centered .footer-social-panel { justify-items: center; }
.footer-layout-centered .footer-social-head { justify-content: center; }
.footer-layout-centered .footer-social-grid { justify-content: center; }
.footer-layout-soft-band {
  width: 100%;
  padding: 0 0 34px;
  border-top: 0;
}
.footer-layout-soft-band::before { display: none; }
.footer-layout-soft-band .footer-shell {
  width: min(var(--zl-width), calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--zl-card-border) 72%, transparent);
  border-radius: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--zl-card) 82%, transparent), color-mix(in srgb, var(--zl-accent-soft) 34%, transparent));
}
.footer-layout-soft-band .footer-social-link { background: color-mix(in srgb, var(--zl-surface) 58%, transparent); }
.floating-tools {
  position: fixed;
  right: max(18px, calc((100% - var(--zl-width)) / 2 - 74px));
  bottom: 34px;
  z-index: 80;
  display: grid;
  gap: 10px;
}
.floating-tool {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--zl-card-border) 64%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--zl-primary) 86%, var(--zl-muted));
  background: color-mix(in srgb, var(--zl-card) 86%, transparent);
  box-shadow: 0 14px 34px rgba(35, 28, 18, .11), inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease, opacity .22s ease;
}
.floating-tool:hover,
.floating-tool:focus-visible {
  transform: translateY(-3px) scale(1.03);
  color: color-mix(in srgb, var(--zl-accent) 88%, var(--zl-primary));
  border-color: color-mix(in srgb, var(--zl-accent) 42%, transparent);
  background:
    radial-gradient(circle at 32% 24%, color-mix(in srgb, var(--zl-surface) 82%, transparent), transparent 58%),
    color-mix(in srgb, var(--zl-accent-soft) 82%, var(--zl-card) 18%);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--zl-accent) 18%, transparent), inset 0 1px 0 rgba(255,255,255,.62);
}
.floating-tool:focus-visible { outline: 0; box-shadow: 0 16px 38px color-mix(in srgb, var(--zl-accent) 18%, transparent), 0 0 0 4px color-mix(in srgb, var(--zl-accent) 24%, transparent); }
.floating-tool span { display: grid; width: 22px; height: 22px; place-items: center; line-height: 1; }
.floating-tool svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }
.floating-tool b { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
[data-back-to-top] { opacity: 0; pointer-events: none; transform: translateY(8px); }
[data-back-to-top].is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-search-modal[hidden] { display: none; }
.site-search-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 22px; }
.site-search-backdrop { position: absolute; inset: 0; background: rgba(23, 23, 23, .28); backdrop-filter: blur(8px); }
.site-search-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--zl-card-border);
  border-radius: 32px;
  background: color-mix(in srgb, var(--zl-card) 94%, transparent);
  box-shadow: 0 28px 70px rgba(23, 23, 23, .2);
}
.site-search-panel h2 { margin-bottom: 18px; font-size: clamp(28px, 4vw, 42px); }
.site-search-close { position: absolute; right: 18px; top: 16px; width: 36px; height: 36px; border: 1px solid var(--zl-line); border-radius: 999px; background: var(--zl-soft); color: var(--zl-muted); cursor: pointer; font-size: 22px; line-height: 1; }
.site-search-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.site-search-form input { min-height: 48px; border: 1px solid var(--zl-line); border-radius: 999px; background: var(--zl-surface); color: var(--zl-text); outline: none; padding: 0 18px; }
.site-search-form input:focus { border-color: var(--zl-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--zl-accent) 18%, transparent); }
.site-search-form button { min-height: 48px; border: 0; border-radius: 999px; color: #fff; background: var(--zl-primary); padding: 0 20px; font-weight: 900; cursor: pointer; }
.is-search-open { overflow: hidden; }

.archive-page, .single-page, .not-found { padding: 76px 0 88px; }
.archive-heading h1 { margin: 0; font-size: clamp(32px, 4.8vw, 56px); font-weight: var(--zl-heading-weight); line-height: var(--zl-heading-line); letter-spacing: calc(var(--zl-heading-tight) - .008em); }
.content-layout { display: grid; gap: 34px; align-items: start; }
.content-layout.has-sidebar { grid-template-columns: minmax(0, 1fr) 310px; }
.content-layout.no-sidebar { grid-template-columns: minmax(0, 1fr); }
.post-list { display: grid; gap: 14px; }
.post-card a { display: grid; grid-template-columns: 238px 1fr; gap: 22px; min-height: 210px; padding: 16px; border-radius: 30px; transition: .25s ease; }
.post-thumb { margin: 0; }
.post-thumb img { width: 100%; height: 100%; min-height: 178px; object-fit: cover; border-radius: 22px; border: 1px solid var(--zl-card-border); }
.post-card-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 8px 8px 8px 0; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; color: var(--zl-accent); font-size: 13px; font-weight: 850; }
.post-meta a { color: inherit; text-decoration: none; }
.post-card h2 { margin: 9px 0 10px; font-size: clamp(19px, 2.1vw, calc(var(--zl-post-card-title) * .92)); font-weight: var(--zl-heading-weight); line-height: 1.32; letter-spacing: var(--zl-heading-tight); }
.post-card p { margin: 0 0 18px; }
.read-more { color: var(--zl-primary); font-weight: 850; }
.archive-layout-compact .post-card a { grid-template-columns: 1fr; min-height: auto; padding: 24px; }
.archive-layout-compact .post-thumb { display: none; }
.pagination-wrap { margin-top: 24px; }

.single-article { min-width: 0; }
.single-header { max-width: 830px; margin-bottom: 34px; }
.single-header h1 { margin: 14px 0 16px; font-size: clamp(28px, 3.25vw, calc(var(--zl-single-title) * .94)); font-weight: var(--zl-heading-weight); line-height: calc(var(--zl-heading-line) + .04); letter-spacing: var(--zl-heading-tight); }
.single-header p { max-width: 700px; font-size: 18px; line-height: 1.78; }
.single-meta { margin-top: 14px; }
.back-link { color: var(--zl-accent); font-weight: 850; }
.single-cover { margin: 0 0 36px; }
.single-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 34px; border: 1px solid var(--zl-card-border); box-shadow: var(--zl-soft-shadow); }
.content-body { max-width: 760px; font-size: var(--zl-body-size); line-height: var(--zl-body-line); }
.no-sidebar .content-body, .no-sidebar .single-header { margin-left: auto; margin-right: auto; }
.content-body > *:first-child { margin-top: 0; }
.content-body h2 { margin-top: 1.85em; margin-bottom: .62em; font-size: clamp(23px, 2.55vw, calc(var(--zl-content-heading) * .92)); font-weight: var(--zl-heading-weight); line-height: 1.36; letter-spacing: var(--zl-heading-tight); }
.content-body h3 { margin-top: 1.6em; margin-bottom: .55em; font-size: clamp(20px, 2vw, 24px); font-weight: var(--zl-heading-weight); line-height: 1.4; letter-spacing: calc(var(--zl-heading-tight) * .72); }
.content-body p { color: color-mix(in srgb, var(--zl-text) 82%, var(--zl-muted) 18%); }
.content-body a { color: var(--zl-primary); border-bottom: 1px solid var(--zl-accent); }
.content-body blockquote { margin: 30px 0; padding: 20px 24px; border-left: 4px solid var(--zl-accent); background: var(--zl-soft); border-radius: 0 20px 20px 0; }
.content-body code { padding: .15em .35em; border-radius: 7px; background: var(--zl-accent-soft); }
.content-body pre { overflow: auto; padding: 20px; border-radius: 22px; background: var(--zl-primary); color: var(--zl-surface); }

.site-sidebar { display: grid; gap: 14px; }
.has-sticky-sidebar .site-sidebar { position: sticky; top: 96px; }
.sidebar-card { padding: 20px; border-radius: 28px; }
.sidebar-card h2 { margin: 0 0 12px; font-size: 18px; letter-spacing: -0.03em; }
.sidebar-card p { margin: 0 0 16px; font-size: 14px; }
.sidebar-avatar { width: 64px; height: 64px; object-fit: cover; border-radius: 20px; margin-bottom: 14px; }
.sidebar-avatar.placeholder { display: grid; place-items: center; color: #fff; background: var(--zl-primary); font-size: 26px; font-weight: 900; }
.sidebar-cta { display: inline-flex; justify-content: center; width: 100%; min-height: 42px; align-items: center; border-radius: 999px; color: #fff; background: var(--zl-primary); font-weight: 850; }
.link-card a { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--zl-line); color: var(--zl-muted); font-weight: 750; }
.recent-link { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--zl-line); }
.recent-link span { color: var(--zl-accent); font-size: 13px; font-weight: 900; }
.recent-link strong { font-size: 14px; line-height: 1.45; }

.related-posts { max-width: 920px; margin-top: 62px; padding-top: 34px; border-top: 1px solid var(--zl-line); }
.related-posts h2 { margin-bottom: 18px; font-size: clamp(25px, 3vw, 35px); font-weight: var(--zl-heading-weight); line-height: var(--zl-heading-line); letter-spacing: var(--zl-heading-tight); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-grid a { min-height: 140px; padding: 18px; border-radius: 24px; transition: .25s ease; }
.related-grid time { display: block; margin-bottom: 12px; color: var(--zl-accent); font-size: 13px; font-weight: 900; }
.related-grid strong { font-size: 17px; line-height: 1.35; }
.not-found { min-height: 60vh; }
.friends-page { padding: 44px 0 86px; }
.friends-filter { margin: 0 0 18px; }
.directory-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.directory-head h2 { font-size: clamp(24px, 2.75vw, 34px); }
.directory-head .section-label { margin-bottom: 8px; }
.directory-desc { max-width: 660px; margin: 8px 0 0; color: var(--zl-muted); font-size: 15px; line-height: 1.7; }
.directory-head span { display: inline-flex; min-height: 36px; align-items: center; padding: 0 13px; border: 1px solid var(--zl-line); border-radius: 999px; color: var(--zl-accent); background: var(--zl-soft); font-size: 13px; font-weight: 900; white-space: nowrap; }
.friend-directory { overflow: hidden; }
.friend-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.friend-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--zl-line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--zl-surface) 76%, var(--zl-soft) 24%);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.friend-card:hover { transform: translateY(-3px); border-color: var(--zl-card-border); background: var(--zl-soft); box-shadow: var(--zl-soft-shadow); }
.friend-card.no-icon { grid-template-columns: 1fr; min-height: 96px; }
.friend-card.is-hidden { display: none; }
.friend-icon { display: grid; width: 46px; height: 46px; place-items: center; overflow: hidden; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--zl-primary), color-mix(in srgb, var(--zl-primary) 74%, var(--zl-accent) 26%)); font-size: 17px; font-weight: 950; }
.friend-icon img { width: 100%; height: 100%; object-fit: cover; }
.friend-content { min-width: 0; }
.friend-content strong { display: block; overflow: hidden; margin: 0 0 5px; font-size: 16px; line-height: 1.28; letter-spacing: -0.018em; text-overflow: ellipsis; white-space: nowrap; }
.friend-content em { display: -webkit-box; overflow: hidden; color: var(--zl-muted); font-style: normal; font-size: 13px; line-height: 1.52; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.friend-content small { display: inline-flex; margin-top: 8px; color: var(--zl-accent); font-size: 11px; font-weight: 900; }
.empty-state { padding: 28px; border: 1px solid var(--zl-line); border-radius: 24px; background: var(--zl-soft); }

.guestbook-page { padding: 44px 0 82px; }
.guestbook-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: clamp(14px, 3vw, 26px);
  align-items: center;
  min-height: 210px;
  margin-bottom: 18px;
  padding: clamp(20px, 3.2vw, 32px);
  overflow: hidden;
  border: 1px solid var(--zl-card-border);
  border-radius: 30px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--zl-card) 90%, transparent), color-mix(in srgb, var(--zl-accent-soft) 42%, transparent)),
    radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--zl-accent) 18%, transparent), transparent 14rem);
  box-shadow: 0 18px 50px rgba(35, 28, 18, .08);
}
.guestbook-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(color-mix(in srgb, var(--zl-text) 5%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--zl-text) 4%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(115deg, rgba(0,0,0,.72), transparent 72%);
}
.guestbook-copy, .guestbook-notes { position: relative; z-index: 1; }
.guestbook-copy h1 { max-width: 680px; margin: 0 0 8px; font-size: clamp(32px, 4.35vw, 52px); font-weight: var(--zl-heading-weight); line-height: calc(var(--zl-heading-line) - .04); letter-spacing: calc(var(--zl-heading-tight) - .008em); }
.guestbook-copy p:not(.section-label) { max-width: 610px; margin: 0; color: var(--zl-muted); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.66; }
.guestbook-notes {
  align-self: stretch;
  min-height: 160px;
  pointer-events: none;
  perspective: 700px;
}
.guestbook-note {
  position: absolute;
  display: block;
  border: 1px solid color-mix(in srgb, var(--zl-primary) 10%, var(--zl-card-border));
  border-radius: 24px;
  background: color-mix(in srgb, var(--zl-surface) 84%, transparent);
  box-shadow: 0 18px 42px rgba(35, 28, 18, .08), inset 0 1px 0 rgba(255,255,255,.5);
  backdrop-filter: blur(14px);
  animation: noteFloat 7.6s cubic-bezier(.4, 0, .2, 1) infinite;
  will-change: transform;
}
.guestbook-note-main {
  right: 2px;
  top: 22px;
  width: min(176px, 82%);
  height: 112px;
  transform: rotate(4deg);
}
.guestbook-note-back {
  left: 8px;
  bottom: 12px;
  width: min(138px, 64%);
  height: 86px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--zl-accent-soft) 70%, var(--zl-surface) 30%);
  opacity: .86;
  animation-delay: -2.8s;
}
.guestbook-note i,
.guestbook-note b,
.guestbook-note em {
  position: absolute;
  display: block;
  left: 18px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--zl-primary) 12%, var(--zl-line) 88%);
}
.guestbook-note i { top: 24px; width: 54%; }
.guestbook-note b { top: 48px; width: 76%; }
.guestbook-note em { top: 72px; width: 42%; }
.guestbook-note-back i { top: 24px; width: 58%; }
.guestbook-note-back b { top: 48px; width: 72%; }
.guestbook-typing {
  position: absolute;
  right: 18px;
  bottom: 14px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--zl-card-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--zl-card) 86%, transparent);
  box-shadow: 0 12px 28px rgba(35, 28, 18, .07);
}
.guestbook-typing i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--zl-accent);
  animation: typingPulse 1.35s ease-in-out infinite;
}
.guestbook-typing i:nth-child(2) { animation-delay: .16s; }
.guestbook-typing i:nth-child(3) { animation-delay: .32s; }
.friend-constellation,
.category-visual,
.camera-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 160px;
  pointer-events: none;
}
.friend-node {
  position: absolute;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--zl-card-border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--zl-surface) 86%, transparent);
  box-shadow: var(--zl-soft-shadow);
  animation: nodeFloat 7.2s ease-in-out infinite;
}
.friend-node::after { content: ""; position: absolute; inset: 13px; border-radius: 999px; background: var(--zl-accent); }
.node-one { left: 20px; top: 24px; }
.node-two { right: 28px; top: 42px; animation-delay: -2s; }
.node-three { left: 86px; bottom: 22px; animation-delay: -3.6s; }
.friend-line { position: absolute; height: 1px; transform-origin: left center; background: color-mix(in srgb, var(--zl-accent) 34%, transparent); animation: linePulse 2.8s ease-in-out infinite; }
.line-one { left: 56px; top: 48px; width: 130px; --line-rotate: 10deg; transform: rotate(10deg); }
.line-two { left: 104px; top: 106px; width: 92px; --line-rotate: -32deg; transform: rotate(-32deg); animation-delay: -1.4s; }
.friend-chip { position: absolute; right: 2px; bottom: 16px; padding: 8px 12px; border: 1px solid var(--zl-card-border); border-radius: 999px; background: color-mix(in srgb, var(--zl-card) 88%, transparent); color: var(--zl-primary); font-size: 12px; font-weight: 900; box-shadow: 0 12px 26px rgba(35, 28, 18, .07); }
.friend-chip.is-soft { left: 0; right: auto; bottom: 68px; color: var(--zl-accent); background: color-mix(in srgb, var(--zl-accent-soft) 72%, var(--zl-card) 28%); }
.category-ring { position: absolute; right: 12px; top: 18px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--zl-accent) 42%, transparent); border-radius: 999px; animation: slowSpin 14s linear infinite; }
.category-ring::before, .category-ring::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 999px; background: var(--zl-accent); }
.category-ring::before { left: 20px; top: 18px; }
.category-ring::after { right: 18px; bottom: 26px; }
.category-frame { position: absolute; display: block; border: 1px solid var(--zl-card-border); border-radius: 18px; background: color-mix(in srgb, var(--zl-surface) 78%, transparent); box-shadow: 0 14px 34px rgba(35, 28, 18, .07); animation: noteFloat 7s ease-in-out infinite; }
.frame-one { left: 6px; top: 34px; width: 92px; height: 68px; }
.frame-two { right: 44px; bottom: 18px; width: 112px; height: 72px; animation-delay: -2.2s; }
.frame-three { left: 62px; bottom: 4px; width: 70px; height: 48px; background: color-mix(in srgb, var(--zl-accent-soft) 66%, var(--zl-surface) 34%); animation-delay: -3.8s; }
.camera-body { position: absolute; right: 8px; top: 38px; width: 170px; height: 110px; border: 1px solid var(--zl-card-border); border-radius: 30px; background: color-mix(in srgb, var(--zl-surface) 82%, transparent); box-shadow: var(--zl-soft-shadow); animation: cameraDrift 7.6s ease-in-out infinite; }
.camera-body::before { content: ""; position: absolute; left: 24px; top: -16px; width: 54px; height: 24px; border: 1px solid var(--zl-card-border); border-bottom: 0; border-radius: 16px 16px 0 0; background: color-mix(in srgb, var(--zl-surface) 88%, transparent); }
.camera-body i { position: absolute; left: 58px; top: 24px; width: 62px; height: 62px; border: 10px solid color-mix(in srgb, var(--zl-primary) 12%, var(--zl-line) 88%); border-radius: 999px; background: color-mix(in srgb, var(--zl-accent) 20%, transparent); }
.camera-body b { position: absolute; right: 22px; top: 22px; width: 14px; height: 14px; border-radius: 999px; background: var(--zl-accent); }
.camera-flare { position: absolute; border-radius: 999px; background: color-mix(in srgb, var(--zl-accent) 24%, transparent); animation: flarePulse 2.6s ease-in-out infinite; }
.flare-one { left: 12px; top: 28px; width: 22px; height: 22px; }
.flare-two { left: 44px; bottom: 22px; width: 12px; height: 12px; animation-delay: -1.2s; }
.guestbook-layout { display: grid; gap: 22px; }
.guestbook-card, .comment-zone {
  border: 1px solid var(--zl-card-border);
  border-radius: 30px;
  background: var(--zl-card);
  box-shadow: var(--zl-soft-shadow);
}
.guestbook-card { padding: clamp(20px, 3vw, 30px); }
.guestbook-prompt { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--zl-line); }
.guestbook-prompt span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 16px; color: #fff; background: var(--zl-primary); font-size: 13px; font-weight: 950; }
.guestbook-prompt p { margin: 0; color: color-mix(in srgb, var(--zl-text) 78%, var(--zl-muted) 22%); font-size: 18px; line-height: 1.72; }
.category-grid, .service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.category-card, .service-card {
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--zl-line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--zl-surface) 76%, var(--zl-soft) 24%);
  transition: .22s ease;
}
.category-card:hover, .service-card:hover { transform: translateY(-3px); border-color: var(--zl-card-border); background: var(--zl-soft); box-shadow: var(--zl-soft-shadow); }
.category-card span, .service-card span { display: inline-flex; margin-bottom: 20px; color: var(--zl-accent); font-size: 13px; font-weight: 950; letter-spacing: .08em; }
.category-card strong, .service-card h3 { display: block; margin: 0 0 9px; color: var(--zl-text); font-size: 19px; font-weight: var(--zl-heading-weight); line-height: 1.34; letter-spacing: calc(var(--zl-heading-tight) * .72); }
.category-card em, .service-card p { display: block; margin: 0; color: var(--zl-muted); font-style: normal; font-size: 14px; line-height: 1.62; }
.category-latest-list, .mini-timeline { display: grid; gap: 12px; }
.category-latest-item, .mini-timeline section { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 16px; border: 1px solid var(--zl-line); border-radius: 22px; background: color-mix(in srgb, var(--zl-surface) 72%, var(--zl-soft) 28%); transition: .22s ease; }
.category-latest-item:hover,
.photographer-journey .mini-timeline section:hover { transform: translateY(-3px); border-color: var(--zl-card-border); background: var(--zl-soft); box-shadow: var(--zl-soft-shadow); }
.category-latest-title, .mini-timeline time { color: var(--zl-accent); font-weight: 950; }
.photographer-journey .mini-timeline time { align-self: center; }
.category-latest-item div { display: grid; gap: 8px; }
.category-latest-item div a { display: flex; gap: 12px; justify-content: space-between; color: var(--zl-text); }
.category-latest-item time { color: var(--zl-muted); font-size: 12px; font-weight: 850; white-space: nowrap; }
.category-latest-item strong { font-size: 14px; line-height: 1.45; }
.photographer-intro p { max-width: 780px; margin: 0; color: color-mix(in srgb, var(--zl-text) 82%, var(--zl-muted) 18%); font-size: clamp(17px, 2vw, 21px); line-height: 1.82; }
.mini-timeline h3 { margin-bottom: 6px; }
.mini-timeline p { margin: 0; font-size: 14px; line-height: 1.66; }
.guestbook-page .comment-zone { grid-column: 1 / -1; }
.page-prompt-line { grid-column: 1 / -1; padding: 16px 18px; border: 1px solid var(--zl-card-border); border-radius: 20px; color: color-mix(in srgb, var(--zl-text) 80%, var(--zl-muted) 20%); background: color-mix(in srgb, var(--zl-surface) 78%, var(--zl-soft) 22%); box-shadow: var(--zl-soft-shadow); font-size: 15px; line-height: 1.72; }
.comment-zone { width: 100%; max-width: none; padding: clamp(18px, 2.4vw, 26px); }
.single-content .comment-zone { margin-top: 28px; padding: clamp(16px, 2vw, 22px); border-radius: 24px; }
.no-sidebar .comment-zone { margin-left: 0; margin-right: 0; }
.comment-zone-head { max-width: 620px; margin-bottom: 14px; }
.comment-zone-head h2 { margin: 0; font-size: clamp(22px, 2.55vw, 30px); font-weight: var(--zl-heading-weight); line-height: 1.22; letter-spacing: var(--zl-heading-tight); }
.comment-list { display: grid; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.comment-list .children { display: grid; gap: 8px; margin: 10px 0 0 34px; padding: 0; list-style: none; }
.comment-card { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 13px; border: 1px solid var(--zl-line); border-radius: 18px; background: color-mix(in srgb, var(--zl-surface) 74%, var(--zl-soft) 26%); }
.comment-card.no-avatar { grid-template-columns: 1fr; }
.comment-avatar img, .local-comment-avatar { width: 40px; height: 40px; border-radius: 13px; }
.local-comment-avatar { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--zl-primary), color-mix(in srgb, var(--zl-primary) 72%, var(--zl-accent) 28%)); font-size: 14px; font-weight: 950; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.comment-meta { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; margin-bottom: 4px; }
.comment-meta strong { font-size: 14px; letter-spacing: -0.015em; }
.comment-meta a { color: var(--zl-accent); font-size: 12px; font-weight: 850; }
.comment-text p { margin: 0 0 6px; color: color-mix(in srgb, var(--zl-text) 84%, var(--zl-muted) 16%); font-size: 14px; line-height: 1.66; }
.comment-actions a { color: var(--zl-muted); font-size: 12px; font-weight: 850; }
.comment-awaiting, .comments-closed, .comment-notes { color: var(--zl-muted); font-size: 13px; }
.comment-reply-title { margin: 0 0 8px; font-size: clamp(19px, 2.15vw, 24px); font-weight: var(--zl-heading-weight); line-height: 1.3; letter-spacing: var(--zl-heading-tight); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.zl-comment-form { display: grid; gap: 12px; }
.zl-comment-form p { margin: 0; }
.zl-comment-form label { display: block; margin-bottom: 6px; color: var(--zl-muted); font-size: 12px; font-weight: 850; }
.zl-comment-form input:not([type="submit"]), .zl-comment-form textarea {
  width: 100%;
  border: 1px solid var(--zl-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--zl-surface) 86%, white 14%);
  color: var(--zl-text);
  outline: none;
  padding: 12px 14px;
  transition: .2s ease;
}
.zl-comment-form textarea { min-height: 128px; resize: vertical; }
.zl-comment-form input:focus, .zl-comment-form textarea:focus { border-color: var(--zl-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--zl-accent) 18%, transparent); }
.zl-comment-form .form-submit { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.zl-comment-form .submit { min-height: 40px; padding: 0 18px; border: 0; border-radius: 999px; color: #fff; background: var(--zl-primary); font-size: 13px; font-weight: 900; cursor: pointer; transition: .2s ease; }
.zl-comment-form .submit:hover { transform: translateY(-1px); background: color-mix(in srgb, var(--zl-primary) 88%, var(--zl-accent) 12%); }
.comment-verify-wrap { display: inline-flex; align-items: center; gap: 8px; }
.comment-click-verify {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  color: var(--zl-muted);
  background: color-mix(in srgb, var(--zl-soft) 82%, var(--zl-surface) 18%);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.verify-mark { display: inline-grid; width: 16px; height: 16px; place-items: center; border: 1px solid currentColor; border-radius: 999px; }
.verify-mark::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; opacity: .38; transition: .2s ease; }
.comment-click-verify:hover { transform: translateY(-1px); color: var(--zl-primary); border-color: var(--zl-card-border); }
.comment-click-verify.is-verified { color: #fff; border-color: #1f7a48; background: #1f7a48; box-shadow: 0 8px 18px rgba(31, 122, 72, .18); }
.comment-click-verify.is-verified .verify-mark { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.72); }
.comment-click-verify.is-verified .verify-mark::before { content: "✓"; width: auto; height: auto; background: transparent; color: #fff; font-size: 11px; line-height: 1; opacity: 1; }
.comment-click-verify.needs-attention { animation: verifyShake .36s ease; border-color: #c86b56; color: #c86b56; }
.comment-navigation, .comments-pagination { margin: 18px 0; }
.comments-pagination .page-numbers { display: inline-flex; min-width: 34px; min-height: 34px; align-items: center; justify-content: center; margin-right: 6px; border: 1px solid var(--zl-line); border-radius: 999px; color: var(--zl-muted); font-weight: 850; }
.comments-pagination .current { color: #fff; background: var(--zl-primary); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(8deg); }
}
@keyframes noteFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(-1deg); }
}
@keyframes typingPulse {
  0%, 80%, 100% { opacity: .34; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}
@keyframes nodeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(6deg); }
}
@keyframes linePulse {
  0%, 100% { opacity: .34; transform: scaleX(.82) rotate(var(--line-rotate, 0deg)); }
  50% { opacity: .9; transform: scaleX(1) rotate(var(--line-rotate, 0deg)); }
}
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}
@keyframes cameraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(2deg); }
}
@keyframes flarePulse {
  0%, 100% { opacity: .38; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes verifyShake {
  0%, 100% { transform: translateX(0); }
  28% { transform: translateX(-5px); }
  58% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-tool,
  .orbit,
  .guestbook-note,
  .guestbook-typing i,
  .friend-node,
  .friend-line,
  .category-ring,
  .category-frame,
  .camera-body,
  .camera-flare,
  .comment-click-verify.needs-attention {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .content-layout.has-sidebar { grid-template-columns: 1fr; }
  .has-sticky-sidebar .site-sidebar { position: static; }
  .site-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header { top: 10px; border-radius: 24px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 10px); right: 0; display: none; width: min(280px, 100%); padding: 14px; border-radius: 24px; background: rgba(248,244,236,.96); box-shadow: var(--zl-shadow); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; }
  .site-nav a { width: 100%; max-width: none; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .split-section { align-items: start; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-card { min-height: 320px; }
  .card-grid, .work-grid, .latest-grid, .related-grid { grid-template-columns: 1fr; }
  .guestbook-hero { grid-template-columns: 1fr; }
  .guestbook-notes, .friend-constellation, .category-visual, .camera-visual { min-height: 126px; }
  .friend-grid, .category-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-latest-item, .mini-timeline section { grid-template-columns: 1fr; }
  .row-heading { align-items: start; flex-direction: column; }
  .timeline::before { left: 4px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 28px; }
  .timeline-item div::before { left: -31px; }
  .feature-item { grid-template-columns: 1fr; gap: 8px; }
  .post-card a { grid-template-columns: 1fr; }
  .post-card-body { padding: 0 4px 4px; }
  .site-sidebar { grid-template-columns: 1fr; }
  .footer-shell,
  .footer-layout-compact-line .footer-shell,
  .footer-layout-soft-band .footer-shell { grid-template-columns: 1fr; align-items: start; }
  .footer-layout-compact-line .footer-main { display: block; }
  .footer-layout-compact-line .footer-badge { margin: 0 0 8px; }
  .footer-layout-compact-line .footer-main p:not(.footer-badge) { max-width: 600px; white-space: normal; }
  .footer-layout-compact-line .footer-main small { display: flex; margin-top: 12px; white-space: normal; }
  .footer-layout-compact-line .footer-legal { flex-wrap: wrap; }
  .footer-social-panel { justify-items: start; }
  .footer-social-head { justify-content: flex-start; }
  .footer-social-grid { justify-content: flex-start; max-width: none; }
  .floating-tools { right: 14px; bottom: 18px; }
}

@media (max-width: 560px) {
  .section-wrap, .site-footer { width: min(100% - 28px, var(--zl-width)); }
  .footer-layout-soft-band { width: 100%; }
  .footer-layout-soft-band .footer-shell { width: min(100% - 28px, var(--zl-width)); padding: 18px; border-radius: 24px; }
  .footer-social-grid { gap: 6px; }
  .footer-social-link, .footer-social-icon { width: 34px; height: 34px; }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); line-height: calc(var(--zl-heading-line) - .02); letter-spacing: calc(var(--zl-heading-tight) - .004em); }
  .single-header h1 { font-size: clamp(27px, 7.4vw, 36px); line-height: calc(var(--zl-heading-line) + .04); letter-spacing: var(--zl-heading-tight); }
  .archive-heading h1 { font-size: clamp(29px, 8.3vw, 42px); line-height: var(--zl-heading-line); }
  .hero-card strong { right: 20px; }
  .hero-stats { display: grid; grid-template-columns: 1fr; }
  .friend-grid, .category-grid, .service-grid { grid-template-columns: 1fr; }
  .directory-head { align-items: start; flex-direction: column; }
  .guestbook-page { padding-top: 48px; }
  .guestbook-hero, .guestbook-card, .comment-zone { border-radius: 26px; }
  .guestbook-notes, .friend-constellation, .category-visual, .camera-visual { min-height: 104px; }
  .guestbook-prompt, .comment-card { grid-template-columns: 1fr; }
  .comment-list .children { margin-left: 16px; }
  .zl-comment-form .form-submit { flex-direction: column; align-items: stretch; }
  .comment-click-verify { justify-content: center; }
  .site-search-form { grid-template-columns: 1fr; }
  .floating-tool { width: 44px; height: 44px; border-radius: 999px; }
  .floating-tool span, .floating-tool svg { width: 20px; height: 20px; }
  .archive-page, .single-page, .not-found { padding-top: 58px; }
}
