:root {
  --cream: #f5efe2;
  --cream-2: #f8f3e9;
  --ink: #2a2822;
  --ink-soft: #5a564c;
  --olive: #6d6d52;
  --olive-deep: #565541;
  --near-black: #15140f;
  --line: rgba(42, 40, 34, 0.14);
  --gold: #c9b98a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #d9c7ac; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 6vw;
}

.section { padding-block: 100px; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.6;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}

.section-title--light { color: #f4efe2; margin-bottom: 44px; }

.script-en { font-family: 'Yellowtail', cursive; }
.script-jp { font-family: 'Klee One', cursive; }

.arrow { display: inline-block; transition: transform 0.25s ease; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-outline { color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: #fff; color: var(--near-black); }

.btn-outline-light { color: #f4efe2; border-color: rgba(244,239,226,0.55); }
.btn-outline-light:hover { background: #f4efe2; color: var(--olive-deep); }

.btn-dark { background: var(--near-black); color: #fff; border-color: var(--near-black); }
.btn-dark:hover { background: transparent; color: var(--near-black); }

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
}

.center-btn { text-align: center; margin-top: 52px; }

/* ---------- Sample nav ---------- */
.sample-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: 36px;
  display: flex;
  align-items: center;
  padding-inline: 20px;
  background: rgba(16, 22, 31, 0.55);
  backdrop-filter: blur(6px);
}

.sample-nav a {
  color: #f7f4ec;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 22px;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 239, 226, 0.94);
  backdrop-filter: blur(6px);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Yellowtail', cursive;
  font-size: 30px;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .logo { color: var(--ink); }

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav {
  display: flex;
  gap: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .nav { color: var(--ink); }
.nav a { position: relative; padding-bottom: 3px; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.social-icons {
  display: flex;
  gap: 16px;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .social-icons { color: var(--ink); }
.social-icons a { display: flex; opacity: 0.85; transition: opacity 0.2s ease; }
.social-icons a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span,
.nav-open .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,20,0.35) 0%, rgba(10,14,20,0.15) 30%, rgba(10,14,20,0.55) 100%),
    linear-gradient(90deg, rgba(8,10,14,0.55) 0%, rgba(8,10,14,0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
  color: #fff;
  max-width: 640px;
}

.hero-logo {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(56px, 9vw, 100px);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.75;
  margin: 0 0 22px;
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin: 0 0 34px;
}

/* ---------- About ---------- */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 6vw;
  align-items: center;
}

.about-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 38px;
}

.about-media {
  position: relative;
}

.polaroid {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 16px 16px 16px;
  box-shadow: 0 24px 50px -18px rgba(30, 28, 20, 0.35);
  transform: rotate(1.2deg);
  max-width: 460px;
  margin-inline: auto;
}
.polaroid img { width: 100%; height: auto; display: block; }

.washi-tape {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: 130px;
  height: 46px;
  background: #e3d3ad;
  opacity: 0.8;
  transform: rotate(-6deg);
}

.handwritten-caption {
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  margin: 34px 0 0 6px;
}
.handwritten-caption .script-jp { font-size: 24px; }

.twig-deco {
  position: absolute;
  top: -30px;
  right: -6%;
  opacity: 0.9;
}

/* ---------- Music ---------- */
.music-section { background: var(--olive); }

.music-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cover-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 30px -14px rgba(0,0,0,0.45);
}

.cover-title {
  position: relative;
  z-index: 1;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cover-tile--konbini::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(6,8,10,0.05) 45%, rgba(6,8,10,0.72) 100%);
}

.track-name {
  margin: 18px 0 4px;
  font-size: 14.5px;
  color: #f4efe2;
}

.track-type {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244,239,226,0.6);
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.audio-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(244,239,226,0.55);
  background: transparent;
  color: #f4efe2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.audio-toggle:hover { border-color: #f4efe2; }
.audio-toggle .icon-play { margin-left: 1px; }
.audio-toggle .icon-pause { display: none; }
.audio-player.is-playing .audio-toggle .icon-play { display: none; }
.audio-player.is-playing .audio-toggle .icon-pause { display: block; }

.audio-track {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(244,239,226,0.28);
  border-radius: 2px;
  overflow: hidden;
}

.audio-progress {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #f4efe2;
  border-radius: 2px;
}

.audio-time {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: rgba(244,239,226,0.6);
  min-width: 28px;
  text-align: right;
}

/* ---------- Videos + News ---------- */
.videos-news-section { background: var(--cream-2); }

.videos-news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8vw;
}

.main-video {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 26px;
}
.main-video img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
video.main-video { width: 100%; height: auto; object-fit: cover; }
.main-video:hover img { transform: scale(1.04); }
.main-video::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,8,0.18);
}

.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.video-list { display: flex; flex-direction: column; gap: 20px; }
.video-list li { display: flex; align-items: center; gap: 16px; }
.video-list img {
  width: 84px; height: 60px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.video-list-text { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 10px; }
.video-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.video-title span { color: var(--ink-soft); font-size: 12.5px; }

.watch-link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.watch-link:hover .arrow { transform: translateX(4px); }

.news-list { display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.news-list time {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.news-list p { margin: 0; font-size: 14.5px; line-height: 1.75; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--near-black);
  color: #f4efe2;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.8;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.3) 0%, rgba(10,10,8,0.5) 60%, rgba(10,10,8,0.8) 100%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding-block: 110px 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-tagline {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  margin: 0;
}
.footer-tagline .script-jp { font-size: 0.85em; }

.footer-follow { text-align: right; }
.follow-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  color: rgba(244,239,226,0.75);
}
.social-icons--footer { justify-content: flex-end; }

.footer-bottom {
  position: relative;
  z-index: 2;
  background: rgba(10,10,8,0.92);
  border-top: 1px solid rgba(244,239,226,0.18);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: 26px;
}

.footer-logo {
  font-family: 'Yellowtail', cursive;
  font-size: 24px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244,239,226,0.75);
}
.footer-nav a:hover { color: #f4efe2; }

.copyright {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244,239,226,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .videos-news-grid { grid-template-columns: 1fr; gap: 70px; }
  .music-grid { grid-template-columns: repeat(3, 1fr); }
  .twig-deco { display: none; }
}

@media (max-width: 760px) {
  .section { padding-block: 76px; }

  .nav-toggle { display: flex; }

  .header-right {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 44px;
    padding: 40px 8vw;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-open .header-right { transform: translateX(0); }

  .nav {
    flex-direction: column;
    gap: 22px;
    color: var(--ink);
    font-size: 14px;
  }
  .social-icons { color: var(--ink); }

  .nav-toggle span { background: #fff; }
  .site-header.is-scrolled .nav-toggle span { background: var(--ink); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-content { padding-bottom: 64px; }
  .hero-bg { object-position: 78% 35%; }

  .music-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { padding-block: 80px 50px; align-items: flex-start; flex-direction: column; }
  .footer-follow { text-align: left; }
  .social-icons--footer { justify-content: flex-start; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .music-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .polaroid { padding: 10px; }
  .washi-tape { display: none; }
}
