/* =============================================
   KIBO SUSHI — MIDNIGHT TOKYO
   home.css — Home Page Styles
============================================= */

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255, 45, 85, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(0, 229, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(255, 214, 10, 0.04) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent-red);
}

.hero-eyebrow-text {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.hero-title-wrap {
  margin-bottom: 1.75rem;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-jp-title {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.4em;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-main-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: block;
}

.hero-main-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1s both;
}

.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-red), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Deco numbers */
.hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  animation: fadeIn 1.5s ease 0.8s both;
}

.hero-deco-stat {
  text-align: right;
}

.hero-deco-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}

.hero-deco-num span {
  font-size: 1rem;
  color: var(--accent-red);
}

.hero-deco-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
   FEATURES STRIP
════════════════════════════════════════════ */
.features-strip {
  padding: 3rem 5%;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(255, 45, 85, 0.06);
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   FEATURED MENU
════════════════════════════════════════════ */
.featured-section {
  padding: 7rem 5%;
  background: var(--bg-base);
}

.featured-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

/* Large card */
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.featured-card:hover {
  border-color: rgba(255, 45, 85, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-red);
  transform: translateY(-4px);
}

.featured-card.large {
  grid-row: 1 / 3;
}

.featured-card-img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-card.large .featured-card-img {
  height: 100%;
  min-height: 400px;
}

.featured-card:hover .featured-card-img { transform: scale(1.04); }

.featured-card-img-placeholder {
  width: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 5rem;
  color: rgba(255, 45, 85, 0.15);
}

.featured-card.large .featured-card-img-placeholder { min-height: 400px; font-size: 8rem; }

.featured-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.featured-card.large .featured-card-overlay { padding: 3rem 2rem 2rem; }

.featured-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.featured-card.large .featured-card-name { font-size: 1.8rem; }

.featured-card-price {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.featured-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent-red);
  color: white;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about-section {
  padding: 7rem 5%;
  background: var(--bg-deep);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 8rem;
  color: rgba(255, 45, 85, 0.1);
  border: 1px solid var(--border);
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-red);
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.about-content {}

.about-quote {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent-red);
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-num span { color: var(--accent-red); }

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
  padding: 7rem 5%;
  background: var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'KIBO';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 800;
  color: rgba(255, 45, 85, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-jp {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--accent-red);
  letter-spacing: 0.4em;
  margin-bottom: 1.25rem;
  display: block;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — HOME
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-badge { right: 1rem; }

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

@media (max-width: 768px) {
  .hero-deco { display: none; }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-main-title { font-size: clamp(4rem, 20vw, 7rem); }

  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-strip-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
