/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1a1714;
  --ash: #3d3834;
  --stone: #7a736b;
  --parchment: #f5f0e8;
  --ivory: #faf8f3;
  --vermillion: #c0392b;
  --gold: #b89a5e;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

/* WordPress/Kadenceの余白干渉を抑える */
.home .content-area,
.home .site-content,
.home .entry-content,
.home article,
.home .content-container,
.home .site-main {
  margin: 0;
  padding: 0;
  max-width: none;
}

body.home::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 100, 80, 0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,23,20,0.07); }

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--vermillion);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--vermillion);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--vermillion);
}

.hero-kanji {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--stone);
  letter-spacing: 0.2em;
  margin-bottom: 2.4rem;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ash);
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--vermillion); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--stone);
  color: var(--ash);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-inner {
  position: absolute;
  inset: 0;
  background: var(--parchment);
}

.ink-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 60% 40%, rgba(192,57,43,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(26,23,20,0.08) 0%, transparent 60%);
}

.hero-deco-kanji {
  position: absolute;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 28vw;
  color: rgba(26,23,20,0.04);
  line-height: 1;
  bottom: -0.1em; right: -0.05em;
  pointer-events: none;
  user-select: none;
}

.hero-vert-text {
  position: absolute;
  right: 2.5rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}

.hero-art-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 260px;
  background: white;
  padding: 0.8rem;
  box-shadow: 0 20px 60px rgba(26,23,20,0.15), 0 4px 12px rgba(26,23,20,0.08);
}
.art-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0e8d8 0%, #e8d8c0 40%, #d4b896 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-card-caption {
  padding: 0.6rem 0.2rem 0.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--stone);
}
.art-card-artist {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 0.15rem;
}

.hero-art-card-2 {
  position: absolute;
  left: 58%; top: 40%;
  transform: translate(-50%, -50%) rotate(3deg);
  width: 200px;
  background: white;
  padding: 0.6rem;
  box-shadow: 0 12px 40px rgba(26,23,20,0.10);
  opacity: 0.75;
}
.art-card-img-2 {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(120deg, #e8ddf0 0%, #d4c4e8 50%, #c0a8d4 100%);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--stone);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.6); opacity: 0.4; }
}

.stats-bar {
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  justify-content: center;
  padding: 2rem 3rem;
  gap: 5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 0.3rem;
  display: block;
}

section { padding: 7rem 5rem; }
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: var(--vermillion);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--vermillion); }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  background: var(--parchment);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--ash);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  border-left: 2px solid var(--vermillion);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.about-right { padding-top: 1rem; }

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.value-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  align-items: start;
}
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--vermillion);
  opacity: 0.7;
}
.value-content h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.value-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}

.featured { background: var(--ivory); }
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.featured-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--stone);
  transition: color 0.2s, border-color 0.2s;
}
.featured-link:hover { color: var(--vermillion); border-color: var(--vermillion); }

.artist-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--parchment);
}
.artist-card.large { aspect-ratio: auto; grid-row: span 2; }

.artist-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist-card:hover .artist-card-bg { transform: scale(1.04); }

.card-wash-1 { background: linear-gradient(160deg, #f0e0d0 0%, #d8c4a8 60%, #c4a888 100%); }
.card-wash-2 { background: linear-gradient(140deg, #e8d4f0 0%, #c8b0e0 60%, #b094cc 100%); }
.card-wash-3 { background: linear-gradient(150deg, #d0e8e0 0%, #a8ccc0 60%, #88b4a8 100%); }
.card-wash-4 { background: linear-gradient(170deg, #f0e8d0 0%, #d8cc9c 60%, #c4b478 100%); }

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.artist-card:hover .artist-card-overlay { opacity: 1; }

.card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  margin-bottom: 0.4rem;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}
.card-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.2rem;
}
.card-style {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.55);
  margin-top: 0.5rem;
  font-style: italic;
}

.card-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}

.blog-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: 5rem;
}
.blog-strip .section-eyebrow { color: var(--gold); }
.blog-strip .section-eyebrow::before { background: var(--gold); }
.blog-strip .section-title { color: var(--ivory); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.blog-card {
  border-top: 1px solid rgba(245,240,232,0.15);
  padding-top: 1.8rem;
}
.blog-card-meta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}
.blog-card-excerpt {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.blog-card-read {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.blog-card-read:hover { gap: 0.8rem; }

.blog-cta-wrap {
  margin-top: 4rem;
  text-align: center;
}
.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(245,240,232,0.35);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}
.btn-blog:hover { background: var(--vermillion); border-color: var(--vermillion); }

.marquee-strip {
  overflow: hidden;
  background: var(--parchment);
  border-top: 1px solid rgba(120,100,80,0.1);
  border-bottom: 1px solid rgba(120,100,80,0.1);
  padding: 1.4rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--vermillion);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-section {
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding: 6rem 5rem 4rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.8rem;
}
.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--vermillion); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(120,100,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  text-decoration: none;
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--ink); color: var(--ivory); background: var(--ink); }

.footer-bottom {
  padding: 1.5rem 5rem;
  background: var(--parchment);
  border-top: 1px solid rgba(120,100,80,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.06em;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.3s; }
.fade-in-3 { animation-delay: 0.5s; }
.fade-in-4 { animation-delay: 0.7s; }
.fade-in-5 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-right { height: 55vw; }
  section { padding: 5rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .artist-grid { grid-template-columns: 1fr 1fr; }
  .artist-card.large { grid-row: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 2rem; flex-wrap: wrap; }
  .footer-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem 2rem;
  }
  .footer-bottom {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .blog-strip { padding: 4rem 2rem; }
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

}