/* ============================================================
   JISOO KOREAN FRIED CHICKEN — Premium Franchise Landing Page
   Design: Dark editorial + warm gold + kimchi red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --red:          #C91D32;
  --red-deep:     #8F170F;
  --red-glow:     rgba(201, 29, 50, 0.30);
  --gold:         #E8A825;
  --gold-muted:   #B37A10;
  --gold-glow:    rgba(232, 168, 37, 0.22);
  --ink:          #0D0A08;
  --charcoal:     #111118;
  --panel:        #1A1714;
  --surface:      #221E1A;
  --surface-2:    #2D2824;
  --cream:        #FFF8EC;
  --cream-2:      #F7EFDF;
  --white:        #FFFFFF;
  --text-primary: #F0E8D8;
  --text-muted:   rgba(240, 232, 216, 0.60);
  --border:       rgba(240, 232, 216, 0.10);
  --border-gold:  rgba(232, 168, 37, 0.28);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-card:  0 32px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow:  0 0 60px rgba(232, 168, 37, 0.12);
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--charcoal);
  color: var(--text-primary);
  font-family: 'Outfit', 'Trebuchet MS', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography Scale ───────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.2rem, 8.5vw, 8.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 4.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── Utility ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 10, 8, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--red);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.site-nav a:hover { color: #fff; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--red-glow);
}

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

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

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,5,3,0.92) 0%, rgba(8,5,3,0.65) 55%, rgba(8,5,3,0.25) 100%),
    linear-gradient(0deg, rgba(8,5,3,0.80) 0%, transparent 40%);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 20%; left: 38%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,168,37,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px clamp(20px, 5vw, 72px) 72px;
}

.hero-inner { max-width: 800px; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-kicker-line {
  width: 32px; height: 2px;
  background: var(--gold);
}

.hero-kicker span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  max-width: 560px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(201,29,50,0.5); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(232,168,37,0.4); }

/* ─── Hero Stats Panel ───────────────────────────────────── */
.hero-stats {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 72px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: min(340px, 90%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(20px);
}

.hero-stat {
  padding: 20px 22px;
  background: rgba(17, 14, 10, 0.82);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

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

/* ─── Marquee Strip ──────────────────────────────────────── */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Shared ─────────────────────────────────────── */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header h2 { margin-top: 8px; }

/* ─── Intro Band (Brand Story) ───────────────────────────── */
.brand-story {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.brand-story-text h2 { color: var(--text-primary); }

.brand-story-text p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.75;
}

.brand-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.brand-story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.brand-story-image:hover img { transform: scale(1.04); }

.brand-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-gold);
}

/* ─── Menu Grid ──────────────────────────────────────────── */
.menu-section {
  background: var(--charcoal);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.menu-card.tall { grid-row: span 2; }

.menu-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.menu-card.tall .menu-card-img { min-height: 580px; }

.menu-card:hover .menu-card-img { transform: scale(1.06); }

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 45%, transparent 100%);
  pointer-events: none;
}

.menu-card-body {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
}

.menu-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-card-body h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.menu-card-body p {
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 380px;
}

/* ─── Opportunity Section ────────────────────────────────── */
.opportunity-section {
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.opportunity-text h2 { margin: 8px 0 24px; color: var(--text-primary); }

.opportunity-text p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  margin-bottom: 36px;
}

.owner-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  margin-top: 40px;
}

.owner-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.owner-card-caption {
  padding: 18px 20px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.opportunity-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}

.perk-card:hover {
  border-color: var(--border-gold);
  background: var(--surface-2);
}

.perk-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.perk-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.perk-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Stats Band ─────────────────────────────────────────── */
.stats-band {
  background: var(--red);
  padding: clamp(48px, 7vw, 80px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.stat-item:hover { background: rgba(255,255,255,0.10); }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ─── Gallery ────────────────────────────────────────────── */
.gallery-section {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  display: block;
  filter: brightness(0.88) saturate(1.1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-img:hover {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

/* ─── Visit / CTA ────────────────────────────────────────── */
.visit-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.visit-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,29,50,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.visit-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.visit-inner h2 { margin: 8px 0 20px; }

.visit-address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.55;
}

.visit-address svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.visit-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 36px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-card.tall { grid-row: auto; }
  .hero-stats { display: none; }
}

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

  .brand-story-grid,
  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.6rem, 14vw, 4.5rem); }
  .hero { min-height: 100svh; }
  .hero-content { padding-bottom: 52px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .visit-ctas { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
