/* ============================================
   BLEACHi - Street × Graffiti Style
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --white: #f5f5f5;
  --pink: #ff2a6d;
  --yellow: #f9ff21;
  --green: #05ffa1;
  --blue: #01cdfe;
  --purple: #b967ff;
  --gray: #999;
  --border: rgba(255,255,255,0.1);
  --font-jp: "Noto Sans JP", sans-serif;
  --font-display: "Anton", "Bebas Neue", sans-serif;
  --font-handwrite: "Permanent Marker", cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  color: var(--white);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ノイズオーバーレイ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled { padding: 12px 40px; background: rgba(10,10,10,0.95); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 3px;
  margin-top: 4px;
}
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-list a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-list a:not(.nav-cta)::before {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  color: var(--pink);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s;
  padding: 8px 0;
}
.nav-list a:not(.nav-cta):hover::before { clip-path: inset(0 0 0 0); }
.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 2px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--yellow); color: var(--black) !important; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--white); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-graffiti {
  position: absolute;
  font-family: var(--font-handwrite);
  color: var(--pink);
  opacity: 0.15;
  user-select: none;
  transform: rotate(-8deg);
}
.hero-graffiti-1 { top: 10%; left: 5%; font-size: 180px; color: var(--yellow); }
.hero-graffiti-2 { top: 30%; right: 8%; font-size: 140px; color: var(--pink); transform: rotate(12deg); }
.hero-graffiti-3 { bottom: 15%; left: 15%; font-size: 200px; color: var(--green); }
.hero-graffiti-4 { bottom: 8%; right: 12%; font-size: 160px; color: var(--blue); transform: rotate(-15deg); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--pink);
  padding: 8px 16px;
  border: 1px solid var(--pink);
  margin-bottom: 32px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-title .line { display: block; }
.hero-title .line-1 { color: var(--white); }
.hero-title .line-2 { color: var(--white); }
.hero-title .line-3 { color: var(--white); }
.hero-title .highlight {
  color: var(--yellow);
  background: var(--pink);
  padding: 0 20px;
  display: inline-block;
  transform: rotate(-2deg) translateY(-10px);
  box-shadow: 8px 8px 0 var(--white);
}
.hero-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.btn-lg { padding: 20px 40px; font-size: 17px; }
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--white);
}
.btn-primary:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translate(-3px,-3px);
  box-shadow: 9px 9px 0 var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 var(--pink);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 var(--yellow);
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--black);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--yellow);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 120px 40px; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }
.section-head { margin-bottom: 60px; }
.section-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -1px;
}
.section-title .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.section-sub {
  font-family: var(--font-handwrite);
  font-size: 20px;
  color: var(--yellow);
  margin-top: 12px;
  transform: rotate(-2deg);
  display: inline-block;
}
.section-more { text-align: center; margin-top: 60px; }

/* ABOUT */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--yellow);
  margin-bottom: 24px;
  letter-spacing: 1px;
  line-height: 1.3;
}
.about-text p { margin-bottom: 20px; font-size: 15px; }
.about-text strong { color: var(--pink); font-weight: 700; }
.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: var(--black-2);
  transition: all 0.2s;
}
.about-list li:hover {
  border-color: var(--pink);
  transform: translateX(8px);
}
.about-list li span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--pink);
  min-width: 30px;
}
.about-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 12px 12px 0 var(--yellow);
}
.tape {
  position: absolute;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  padding: 8px 24px;
  letter-spacing: 3px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.tape-1 { top: -18px; left: 30px; transform: rotate(-5deg); background: var(--yellow); }
.tape-2 { bottom: -18px; right: 30px; transform: rotate(4deg); background: var(--green); }
.about-num { text-align: center; color: var(--white); }
.num {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 200px);
  line-height: 1;
  display: block;
  text-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}
.num-label {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 8px;
}

/* STYLES GRID */
.styles { background: var(--black-2); }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.style-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.style-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 var(--yellow);
}
.style-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
  filter: grayscale(0.3);
}
.style-card:hover .style-img { transform: scale(1.08); filter: grayscale(0); }
.style-info {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}
.style-tag {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.style-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.style-info p { font-size: 13px; color: var(--gray); }

/* MENU */
.menu-preview { background: var(--black); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-card {
  position: relative;
  padding: 32px 24px;
  border: 2px solid var(--border);
  background: var(--black-2);
  transition: all 0.2s;
}
.menu-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 6px 6px 0 var(--pink);
}
.menu-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(135deg, var(--black-2) 0%, rgba(249,255,33,0.05) 100%);
}
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 2px;
  transform: rotate(3deg);
}
.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--pink);
}
.menu-card p { font-size: 13px; color: var(--gray); }

/* SALONS */
.salons-preview { background: var(--black-2); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 28px;
  border: 2px solid var(--border);
  background: var(--black);
  transition: all 0.2s;
}
.area-card:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translate(-4px,-4px);
  box-shadow: 8px 8px 0 var(--yellow);
}
.area-tag {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
}
.area-count {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pink);
  transition: color 0.2s;
}
.area-card:hover .area-count { color: var(--white); }

/* NEWS */
.news { background: var(--black); }
.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.news-list li {
  display: grid;
  grid-template-columns: 140px 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.news-list li:hover { background: var(--black-2); padding-left: 20px; }
.news-date {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 1px;
}
.news-cat {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 4px 10px;
  text-align: center;
  letter-spacing: 2px;
}
.news-title { font-size: 15px; }

/* RESERVE */
.reserve {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}
.reserve-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.reserve-graffiti {
  position: absolute;
  font-family: var(--font-handwrite);
  font-size: clamp(80px, 15vw, 200px);
  color: rgba(255,255,255,0.1);
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.reserve-title .highlight {
  color: var(--yellow);
  background: var(--black);
  padding: 0 20px;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: 8px 8px 0 var(--white);
}
.reserve-desc {
  font-size: 17px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}
.reserve-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.reserve .btn-primary { background: var(--black); color: var(--white); box-shadow: 6px 6px 0 var(--yellow); }
.reserve .btn-primary:hover { background: var(--yellow); color: var(--black); box-shadow: 9px 9px 0 var(--black); }

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.8;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translate(-2px,-2px);
  box-shadow: 3px 3px 0 var(--white);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--pink);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .styles-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header, .section, .reserve { padding-left: 20px; padding-right: 20px; }
  .header { padding-top: 16px; padding-bottom: 16px; }
  .hero { padding: 120px 20px 100px; }
  .nav { position: fixed; top: 70px; right: -100%; width: 80%; max-width: 320px; height: calc(100vh - 70px); background: var(--black); border-left: 1px solid var(--border); transition: right 0.3s; padding: 40px 30px; }
  .nav.active { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav-list a { font-size: 20px; }
  .hamburger { display: flex; }
  .styles-grid, .menu-grid, .area-grid { grid-template-columns: 1fr; }
  .news-list li { grid-template-columns: 1fr; gap: 8px; padding: 20px 8px; }
  .news-cat { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .section { padding: 80px 20px; }
  .hero-graffiti { font-size: 100px !important; }
}
