/* =============================================
   HOME PAGE — Brand Fonts + RA Sushi Energy
   ============================================= */

/* ---- FADE IN ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Hero content shows immediately via CSS animation */
.hero .fade-in {
  opacity: 1;
  transform: none;
  animation: heroUp 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero .fade-in:nth-child(1) { animation-delay: 0.05s; }
.hero .fade-in:nth-child(2) { animation-delay: 0.15s; }
.hero .fade-in:nth-child(3) { animation-delay: 0.3s; }
.hero .fade-in:nth-child(4) { animation-delay: 0.45s; }
.hero .fade-in:nth-child(5) { animation-delay: 0.6s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* Dramatic gradient — deep reds like RA Sushi */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 40%, rgba(139,0,0,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(213,0,0,0.15) 0%, transparent 50%),
    linear-gradient(180deg, #000 0%, #0d0000 60%, #000 100%);
}

/* Subtle texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg, transparent, transparent 80px,
      rgba(213,0,0,0.025) 80px, rgba(213,0,0,0.025) 81px
    );
}

.hero-overlay { position: absolute; inset: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 900px;
}

/* Label */
.hero-label {
  font-family: var(--font-bebas);
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}

/* ---- HERO HEADLINE ANIMATIONS ---- */
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes meetsFlicker {
  0%   { opacity: 0; }
  40%  { opacity: 1; color: #fff; }
  55%  { opacity: 0.3; color: var(--red); }
  70%  { opacity: 1; color: #fff; }
  85%  { opacity: 0.5; }
  100% { opacity: 1; color: #fff; }
}
@keyframes mexicoGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(213,0,0,0.4); }
  50%       { text-shadow: 0 0 24px rgba(213,0,0,0.9), 0 0 48px rgba(213,0,0,0.4); }
}

.hero-japan {
  display: inline-block;
  animation: slideFromLeft 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-meets {
  display: inline-block;
  animation: meetsFlicker 0.6s steps(3) 0.9s both;
}
.hero-mexico {
  animation: slideFromRight 0.8s cubic-bezier(0.16,1,0.3,1) 1.1s both,
             mexicoGlow 2.5s ease-in-out 2.2s infinite;
}

/* Main headline */
.hero h1 {
  font-family: var(--font-impact);
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--red);
  font-family: var(--font-display);
  /* Osake gives the "SUSHI" logo feel */
  font-size: 1.15em;
  display: inline-block;
  line-height: 1;
}

/* Red underline accent on a word */
.hero h1 .underline-red {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-red::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

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

.hero-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-bebas);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.4rem 1rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.badge-red {
  background: rgba(213,0,0,0.12);
  border-color: rgba(213,0,0,0.3);
  color: var(--red);
}

/* Red side accent bar */
.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-bebas);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  50% { transform: scaleX(1.3); opacity: 1; }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.strip-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.strip-icon {
  font-size: 1.35rem;
  width: 44px; height: 44px;
  background: rgba(213,0,0,0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-item strong {
  font-family: var(--font-bebas);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  display: block;
  color: var(--white);
}
.strip-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.strip-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ---- CONCEPT ---- */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.concept-actions { margin-top: 2rem; }

.concept-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.concept-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.concept-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
}

.fusion-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(139,0,0,0.15), rgba(213,0,0,0.08));
  border-color: var(--border-red);
}

.card-emoji { font-size: 2rem; margin-bottom: 0.75rem; }

.card-photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  aspect-ratio: 16 / 10;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept-card h3 {
  font-family: var(--font-bebas);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.concept-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- SIGNATURE ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin: 0 auto; }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: var(--border-red);
}

.sig-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sig-img-1 { background: linear-gradient(135deg, #1a0000, #3d0000); }
.sig-img-1::after { content: '🌯'; font-size: 4rem; }
.sig-img-2 { background: linear-gradient(135deg, #001a00, #003500); }
.sig-img-2::after { content: '🍣'; font-size: 4rem; }
.sig-img-3 { background: linear-gradient(135deg, #1a0000, #3a0005); }
.sig-img-3::after { content: '🌮'; font-size: 4rem; }

.sig-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--red);
  color: white;
  font-family: var(--font-bebas);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
}

.sig-body { padding: 1.4rem; }
.sig-body h3 {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.sig-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.sig-tag {
  font-family: var(--font-bebas);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
}

/* ---- STORY TEASER ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 .highlight-red { color: var(--red); }

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color var(--transition);
}
.stat-box:hover { border-color: var(--border-red); }

.stat-num {
  font-family: var(--font-impact);
  font-size: 2.75rem;
  color: var(--red);
  line-height: 1;
  text-transform: uppercase;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- HOURS + LOCATION ---- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.hours-list {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-family: var(--font-bebas); letter-spacing: 0.08em; font-size: 1rem; }

.info-location address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.contact-links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- SOCIAL CTA ---- */
.social-cta { background: var(--dark-2); }
.social-inner { max-width: 580px; margin: 0 auto; }
.social-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- SUSHI TACOS FEATURE ---- */
/* FEATURED CARDS SECTION */
.featured-section {
  padding: 4rem 0 5rem;
  background: var(--dark-2);
}

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

.featured-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-card-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%; /* 16:10 ratio */
  overflow: hidden;
}

.featured-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.broll-video-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.featured-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card-title {
  font-family: var(--font-impact);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: #fff;
  margin: 0.5rem 0 1rem;
}

@media (max-width: 760px) {
  .featured-grid { grid-template-columns: 1fr; gap: 1rem; }
  .featured-card-img { padding-bottom: 56.25%; }
  .featured-card-body { padding: 1.25rem; }
}

/* CINEMATIC B-ROLL SECTION */
.broll-section {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.broll-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.broll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.broll-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 680px;
}

.broll-title {
  font-family: var(--font-impact);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 1.25rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.broll-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .broll-section {
    height: 60vw;
    min-height: 280px;
    max-height: 400px;
    background: url('../images/Rainbow Roll Feature.jpg') center/cover no-repeat;
  }
  .broll-section .broll-video { display: none !important; }
}

.tacos-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #0a0a0a;
}

.tacos-photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.tacos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tacos-photo:hover img { transform: scale(1.03); }

.tacos-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 4rem 4rem 4rem 4.5rem;
  background: var(--dark);
  border-left: 1px solid var(--border);
}

.tacos-flavors {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.taco-flavor {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.flavor-name {
  font-family: var(--font-bebas);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #4ade80;
  white-space: nowrap;
  min-width: 120px;
}

.flavor-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .concept-grid,
  .story-grid,
  .info-grid { grid-template-columns: 1fr; gap: 3rem; }
  .signature-grid { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .strip-items { justify-content: flex-start; }
  .tacos-feature { grid-template-columns: 1fr; }
  .tacos-photo { min-height: 320px; }
  .tacos-content { padding: 3rem 2rem; border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .hero-content { padding-top: 5rem; }
  .hero h1 { font-size: clamp(2.75rem, 10vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .story-stats { grid-template-columns: 1fr; }
  .concept-visual { grid-template-columns: 1fr; }
  .fusion-card { grid-column: span 1; }
  .contact-links { flex-direction: column; }
  .social-buttons { flex-direction: column; }
  .flavor-name { min-width: 100px; }
}
