/*
Theme Name:  Nexus Creative
Theme URI:   https://nexuscreative.jp
Author:      NEXUS CREATIVE
Author URI:  https://nexuscreative.jp
Description: WEB・ロゴ・デザイン制作会社 NEXUS CREATIVE の公式WordPressテーマ。Gutenbergブロックエディタ対応。
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
Text Domain: nexus-creative
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --bg:       #0C0C0C;
  --bg2:      #161616;
  --bg3:      #1e1e1e;
  --text:     #EFEFEF;
  --sub:      #7A7A7A;
  --muted:    #3A3A3A;
  --line:     #222222;
  --white:    #FFFFFF;
  --accent:   #C8C8C8;

  --font-en:  'Space Grotesk', sans-serif;
  --font-jp:  'Noto Sans JP', sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--white); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
  mix-blend-mode: difference;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: .6; }

/* ═══════════════════════════════════════
   CANVAS BG
═══════════════════════════════════════ */
#canvas-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: .35; pointer-events: none;
}
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 56px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
.site-header.scrolled {
  background: rgba(12,12,12,.94);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.site-branding { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.site-branding .brand-main {
  font-family: var(--font-en); font-size: 14px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white); line-height: 1;
}
.site-branding .brand-sub { font-size: 9px; color: var(--sub); letter-spacing: .12em; }

.site-nav { display: flex; gap: 32px; list-style: none; }
.site-nav a {
  color: var(--sub); text-decoration: none;
  font-size: 12px; letter-spacing: .08em; font-family: var(--font-en);
  transition: color .2s; position: relative;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--white); transition: width .3s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 100%; }
.site-nav .nav-cta {
  background: var(--white); color: var(--bg) !important;
  padding: 8px 20px;
}
.site-nav .nav-cta:hover { background: var(--accent); }
.site-nav .nav-cta::after { display: none; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  padding: 0 56px 72px;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.hero-body {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 140px;
}
.hero-tag {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sub); margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--muted); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-nx {
  font-family: var(--font-en); font-size: clamp(72px, 13vw, 170px);
  font-weight: 700; line-height: .88; letter-spacing: -.04em;
  color: var(--white); display: block;
}
.hero-logo-creative {
  font-family: var(--font-en); font-size: clamp(72px, 13vw, 170px);
  font-weight: 700; line-height: .88; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1px var(--muted); display: block;
  transition: -webkit-text-stroke-color .4s;
}
.hero-section:hover .hero-logo-creative { -webkit-text-stroke-color: rgba(200,200,200,.4); }
.hero-logo-jp {
  font-size: 12px; font-weight: 300; letter-spacing: .22em; color: var(--sub);
  margin-top: 20px; display: block;
  opacity: 0; animation: fadeUp .8s 1.2s forwards;
}
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
  padding-top: 48px; border-top: 1px solid var(--line); margin-top: 48px;
  opacity: 0; animation: fadeUp .8s 1.4s forwards;
}
.hero-concept { max-width: 460px; font-size: 14px; color: var(--sub); line-height: 1.95; font-weight: 300; }
.hero-concept strong { color: var(--text); font-weight: 400; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Kinetic chars */
.kinetic-title .char { display: inline-block; transform: translateY(110%); opacity: 0; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bg);
  padding: 14px 28px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  transition: background .2s, gap .25s, transform .2s; will-change: transform;
}
.btn-primary:hover { background: var(--accent); gap: 16px; }
.btn-secondary {
  display: inline-flex; align-items: center;
  border: 1px solid var(--muted); color: var(--sub);
  padding: 14px 28px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s; will-change: transform;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--text); }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; overflow: hidden;
  position: relative; z-index: 1; background: var(--bg);
}
.marquee-inner {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sub); padding: 0 32px;
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '✦'; font-size: 8px; color: var(--muted); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════ */
.section-wrap {
  padding: 96px 56px; border-bottom: 1px solid var(--line);
  position: relative; z-index: 1; background: var(--bg);
}
.section-header { margin-bottom: 60px; }
.section-eye {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--sub); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-eye::before { content: ''; width: 20px; height: 1px; background: var(--muted); }
.section-title {
  font-family: var(--font-en); font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.1; letter-spacing: -.02em;
}
.section-sub { font-size: 13px; color: var(--sub); font-weight: 300; letter-spacing: .08em; margin-top: 8px; }

/* Concept strip */
.concept-strip {
  padding: 48px 56px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 40px;
  position: relative; z-index: 1; background: var(--bg);
}
.strip-label {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sub); white-space: nowrap;
}
.strip-divider { width: 1px; height: 36px; background: var(--muted); flex-shrink: 0; }
.strip-text { font-size: 14px; color: var(--sub); line-height: 1.9; font-weight: 300; }
.strip-text strong { color: var(--text); font-weight: 400; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-row {
  display: flex; align-items: center;
  background: var(--bg2); padding: 26px 36px; gap: 28px;
  position: relative; overflow: hidden;
  transition: background .2s; cursor: default;
}
.service-row::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--white); transition: width .3s; z-index: 0;
}
.service-row:hover::after { width: 3px; }
.service-row:hover { background: var(--bg3); }
.service-row > * { position: relative; z-index: 1; }
.svc-num { font-family: var(--font-en); font-size: 11px; color: var(--muted); letter-spacing: .12em; min-width: 26px; }
.svc-name-en { font-family: var(--font-en); font-size: 18px; font-weight: 600; flex: 1; }
.svc-name-jp { font-size: 12px; color: var(--sub); font-weight: 300; letter-spacing: .06em; min-width: 160px; }
.svc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.svc-tag {
  font-size: 10px; letter-spacing: .1em;
  border: 1px solid var(--line); color: var(--sub); padding: 4px 9px;
  transition: border-color .2s, color .2s;
}
.service-row:hover .svc-tag { border-color: var(--muted); color: var(--accent); }
.svc-arrow {
  margin-left: auto; opacity: 0; transform: translateX(-10px);
  transition: opacity .25s, transform .25s;
  font-family: var(--font-en); font-size: 18px; color: var(--sub);
}
.service-row:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   WORKS
═══════════════════════════════════════ */
.works-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; }
.work-item { position: relative; overflow: hidden; background: var(--bg2); cursor: pointer; }
.work-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/9; }
.work-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.work-item:nth-child(3),
.work-item:nth-child(4),
.work-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.work-thumb {
  position: absolute; inset: 0; overflow: hidden;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-thumb-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.work-item:hover .work-thumb,
.work-item:hover .work-thumb-placeholder { transform: scale(1.06); }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .3s; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.work-item:hover .work-overlay { background: rgba(0,0,0,.18); }
.work-view {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--white);
  opacity: 0; transform: scale(.9); transition: opacity .3s, transform .3s;
}
.work-item:hover .work-view { opacity: 1; transform: scale(1); }
.work-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 26px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  transform: translateY(8px); transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.work-item:hover .work-info { transform: translateY(0); }
.work-cat {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sub); margin-bottom: 4px;
}
.work-title { font-family: var(--font-en); font-size: 15px; font-weight: 600; }

/* ── Case Studies（外部サイトへのリンク） ── */
.case-studies-grid { margin-bottom: 8px; }
.case-studies-grid .work-item:nth-child(1),
.case-studies-grid .work-item:nth-child(2),
.case-studies-grid .work-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.case-studies-grid.works-grid,
.case-studies-grid .work-item { text-decoration: none; color: inherit; display: block; }
.work-link-icon {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; z-index: 2;
  border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s, transform .3s;
}
.work-item:hover .work-link-icon { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }
.pricing-card {
  background: var(--bg2); padding: 44px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}
.pricing-card:not(.featured):hover { transform: translateY(-4px); }
.pricing-card.featured { background: var(--white); color: var(--bg); }
.pricing-badge {
  position: absolute; top: 0; left: 36px;
  font-family: var(--font-en); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--bg); color: var(--white); padding: 5px 12px;
}
.plan-type {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sub); margin-bottom: 28px; margin-top: 8px;
}
.featured .plan-type { color: rgba(0,0,0,.4); margin-top: 28px; }
.plan-price { font-family: var(--font-en); font-size: 38px; font-weight: 700; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.plan-scope { font-size: 12px; color: var(--sub); margin-bottom: 32px; }
.featured .plan-scope { color: rgba(0,0,0,.5); }
.plan-items { list-style: none; flex: 1; }
.plan-item { font-size: 13px; padding: 11px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.featured .plan-item { border-color: rgba(0,0,0,.1); color: var(--bg); }
.plan-item::before { content: '—'; font-size: 11px; color: var(--muted); }
.featured .plan-item::before { color: rgba(0,0,0,.3); }
.plan-cta {
  display: block; text-align: center; text-decoration: none;
  margin-top: 28px; padding: 14px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; transition: all .2s;
}
.pricing-card:not(.featured) .plan-cta { border: 1px solid var(--line); color: var(--text); }
.pricing-card:not(.featured) .plan-cta:hover { background: var(--white); color: var(--bg); border-color: var(--white); }
.featured .plan-cta { background: var(--bg); color: var(--white); }
.featured .plan-cta:hover { background: #1a1a1a; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-text { padding-right: 60px; }
.about-text p { font-size: 14px; color: var(--sub); line-height: 1.95; margin-bottom: 18px; font-weight: 300; }
.about-text p strong { color: var(--text); font-weight: 400; }
.about-text p:last-of-type { margin-bottom: 36px; }
.about-stats { display: flex; flex-direction: column; gap: 2px; }
.stat-box {
  background: var(--bg2); padding: 30px 36px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.stat-box:hover { background: var(--bg3); }
.stat-num { font-family: var(--font-en); font-size: 44px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: 12px; color: var(--sub); font-weight: 300; text-align: right; }
.stat-label-en { font-size: 10px; color: var(--muted); margin-top: 4px; text-align: right; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-intro h3 {
  font-family: var(--font-en); font-size: clamp(22px, 3vw, 36px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 18px;
}
.contact-intro p { font-size: 14px; color: var(--sub); line-height: 1.9; font-weight: 300; margin-bottom: 36px; }
.contact-meta { display: flex; flex-direction: column; gap: 10px; }
.contact-meta-row { display: flex; gap: 14px; align-items: center; font-size: 13px; }
.meta-key {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sub); min-width: 60px;
}
.meta-val { color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sub); background: var(--bg2); padding: 14px 20px 0;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg2); border: none; outline: none;
  padding: 8px 20px 16px; color: var(--text);
  font-family: var(--font-jp); font-size: 14px;
  transition: background .2s; resize: none; width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { background: var(--bg3); }
.form-field select option { background: var(--bg); }
.form-field textarea { min-height: 130px; }
.form-submit {
  background: var(--white); color: var(--bg); border: none;
  padding: 18px 36px; align-self: flex-start; margin-top: 2px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   CONTACT — Fluent Forms 連携スタイル
   （プラグイン標準CSSは functions.php で無効化済み）
═══════════════════════════════════════ */
.nexus-fluentform-wrap .fluentform,
.nexus-fluentform-wrap .ff-el-form-control { width: 100%; }

.nexus-fluentform-wrap form { display: flex; flex-direction: column; gap: 2px; }

.nexus-fluentform-wrap .ff-el-group { display: flex; flex-direction: column; margin: 0 0 2px; }

/* お名前・メールなど横並びにしたい2項目を並べる場合 */
.nexus-fluentform-wrap .ff-t-container > .ff-grid-row,
.nexus-fluentform-wrap .ff-grid { display: grid; gap: 2px; }

.nexus-fluentform-wrap .ff-el-input--label { padding: 0; }
.nexus-fluentform-wrap .ff-el-input--label label {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sub); background: var(--bg2);
  display: block; padding: 14px 20px 0; margin: 0;
}
.nexus-fluentform-wrap .ff-el-input--label label .ff_asterisk,
.nexus-fluentform-wrap .ff-el-input--label label .ff-eror-msg-req { color: var(--accent); }

.nexus-fluentform-wrap .ff-el-input--content { background: var(--bg2); }
.nexus-fluentform-wrap input[type="text"],
.nexus-fluentform-wrap input[type="email"],
.nexus-fluentform-wrap input[type="tel"],
.nexus-fluentform-wrap input[type="number"],
.nexus-fluentform-wrap select,
.nexus-fluentform-wrap textarea {
  background: var(--bg2); border: none; outline: none; box-shadow: none;
  padding: 8px 20px 16px; color: var(--text);
  font-family: var(--font-jp); font-size: 14px;
  transition: background .2s; resize: none; width: 100%; border-radius: 0;
}
.nexus-fluentform-wrap input:focus,
.nexus-fluentform-wrap select:focus,
.nexus-fluentform-wrap textarea:focus { background: var(--bg3); box-shadow: none; }
.nexus-fluentform-wrap select option { background: var(--bg); }
.nexus-fluentform-wrap textarea { min-height: 130px; }

.nexus-fluentform-wrap .ff-el-form-check-label,
.nexus-fluentform-wrap .ff-el-input--content label {
  color: var(--text); font-size: 13px; font-weight: 300;
}

.nexus-fluentform-wrap .error,
.nexus-fluentform-wrap .text-danger,
.nexus-fluentform-wrap .ff-el-is-error .ff-el-input--content { color: #e07a7a; font-size: 11px; margin-top: 4px; }

.nexus-fluentform-wrap button[type="submit"],
.nexus-fluentform-wrap .ff-btn-submit {
  background: var(--white); color: var(--bg); border: none; border-radius: 0;
  padding: 18px 36px; align-self: flex-start; margin-top: 2px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .2s; width: auto;
}
.nexus-fluentform-wrap button[type="submit"]:hover,
.nexus-fluentform-wrap .ff-btn-submit:hover { background: var(--accent); transform: translateY(-2px); }

.nexus-fluentform-wrap .ff-message-success {
  color: var(--accent); font-family: var(--font-en); letter-spacing: .1em; padding: 20px 0;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  padding: 40px 56px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 1; background: var(--bg);
}
.footer-brand { display: flex; flex-direction: column; gap: 3px; }
.footer-brand-main {
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--sub);
}
.footer-brand-sub { font-size: 10px; color: var(--muted); letter-spacing: .1em; }
.footer-copy { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .7s .1s cubic-bezier(.25,.46,.45,.94), transform .7s .1s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .7s .2s cubic-bezier(.25,.46,.45,.94), transform .7s .2s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   GUTENBERG EDITOR STYLES
═══════════════════════════════════════ */
.wp-block { max-width: 800px; }
.editor-styles-wrapper {
  background: var(--bg); color: var(--text);
  font-family: var(--font-jp); padding: 20px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .site-header { padding: 18px 24px; }
  .site-nav { display: none; }
  .hero-section, .section-wrap { padding-left: 24px; padding-right: 24px; }
  .hero-section { padding-bottom: 56px; }
  .concept-strip { padding: 36px 24px; flex-direction: column; gap: 16px; }
  .strip-divider { width: 40px; height: 1px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .work-item:nth-child(n) { grid-column: span 1; aspect-ratio: 16/9; }
  .site-footer { padding: 28px 24px; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
