/* =============================================
   SQIZ FRIES LAB — Main Stylesheet
   Brand Colors: #FFB800 (Gold), #FF5C00 (Orange)
   Dark: #0D0D0D, #1A1A1A
============================================= */

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

:root {
  --gold:     #FFB800;
  --orange:   #FF5C00;
  --red:      #E8003D;
  --dark:     #0D0D0D;
  --dark2:    #1A1A1A;
  --dark3:    #242424;
  --light:    #F5F1E8;
  --white:    #FFFFFF;
  --gray:     #888888;
  --gray2:    #BBBBBB;
  --font-ko:  'Noto Sans KR', sans-serif;
  --font-en:  'Inter', sans-serif;
  --font-disp:'Bebas Neue', sans-serif;
  --radius:   12px;
  --shadow:   0 8px 32px rgba(0,0,0,0.35);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-ko);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  word-break: keep-all;      /* 한글 단어 단위 줄바꿈 */
  overflow-wrap: break-word; /* 긴 영문/URL 넘침 방지 */
}

/* 모바일에서 PC용 <br> 숨기기 */
@media (max-width: 768px) {
  .pc-br { display: none; }
}
/* 모바일 전용 <br> — PC에서 숨기기 */
.mo-br { display: none; }
@media (max-width: 768px) {
  .mo-br { display: inline; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: var(--dark); }

/* =============================================
   FIXED NAV
============================================= */
.fixed-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
  padding: 0;
}
.fixed-nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,184,0,0.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: padding var(--transition);
}
.fixed-nav.scrolled .nav-inner { padding: 14px 32px; }

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-sqiz {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-fries {
  font-family: var(--font-disp);
  font-size: 0.7rem;
  color: var(--gray2);
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray2);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--gold); }

.btn-franchise-nav {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-franchise-nav:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,184,0,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 16px 0 24px;
}
.mobile-menu ul { padding: 0 32px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu .mob-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray2);
  transition: color var(--transition);
}
.mobile-menu .mob-link:hover,
.mobile-menu .mob-cta { color: var(--gold); }

/* =============================================
   SECTION 1: HERO
============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* 실제 매장 사진 배경 */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* 모서리가 잘리지 않도록 기본 여백 확보 */
  transform: scale(1.08);
  transform-origin: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.45) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(13,13,13,0.97) 100%
  );
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* 섹션 공통 파티클 캔버스 */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 0;
}

/* 섹션들 position: relative 보장 */
.brand-section,
.competence-section,
.lifestyle-section {
  position: relative;
  overflow: hidden;
}

/* brand / competence / lifestyle 내부 콘텐츠가 캔버스 위에 오도록 */
.brand-inner,
.competence-inner,
.lifestyle-inner {
  position: relative;
  z-index: 1;
}

/* franchise 섹션 — 캔버스가 배경 이미지 위, 콘텐츠 아래 */
.franchise-section { position: relative; overflow: hidden; }
.franchise-bg { position: absolute; inset: 0; z-index: 0; }
.franchise-inner { position: relative; z-index: 2; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,184,0,0.15);
  border: 1px solid rgba(255,184,0,0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-ko);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--white);
}
.hero-title-line2 {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.btn-hero-primary {
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(255,184,0,0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,184,0,0.5);
}
.btn-hero-secondary {
  padding: 15px 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Scroll Arrow */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-arrow i {
  font-size: 1.4rem;
  color: var(--gold);
}
.scroll-label { font-weight: 600; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   SECTION 2: BRAND IDENTITY
============================================= */
.brand-section {
  background: var(--dark2);
  padding: 120px 0;
  overflow: hidden;
}
.brand-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,184,0,0.1);
  background: #f5f0e8;
}
.brand-img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) contrast(1.04) saturate(1.08);
  transition: transform 0.8s ease, filter 0.6s ease;
  display: block;
}
.brand-img-wrap:hover .brand-img {
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.06) saturate(1.12);
}
.brand-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.0) 50%,
    rgba(13,13,13,0.55) 100%
  );
  pointer-events: none;
}

.brand-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-disp);
  line-height: 1.2;
}
.brand-img-badge span { font-size: 0.65rem; letter-spacing: 3px; display: block; }
.brand-img-badge strong { font-size: 1.4rem; letter-spacing: 1px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(255,184,0,0.75); }

.brand-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.brand-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* 브랜드 선언 — 첫 문장 */
.brand-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-lead strong {
  color: var(--gold);
  font-weight: 700;
}

/* 철학 단락 — 점 + 텍스트 */
.brand-philosophy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-philosophy-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.brand-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  margin-top: 9px;
  box-shadow: 0 0 8px rgba(255,184,0,0.45);
}
.brand-philosophy-line p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}
.brand-philosophy-line strong {
  color: var(--white);
  font-weight: 700;
}
.brand-philosophy-line em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* 결론 강조 */
.brand-conclusion {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}
.brand-conclusion em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* 기존 brand-desc (하위 호환) */
.brand-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}
.brand-desc strong { color: var(--gold); font-weight: 700; }
.brand-desc em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
}

.brand-stats {
  display: flex;
  gap: 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item strong {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1.2;
  display: block;
  word-break: keep-all;
  letter-spacing: 0.5px;
}
.stat-item span {
  font-size: 0.73rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  line-height: 1.5;
  display: block;
}

/* =============================================
   SECTION 2.5: SQIZ FRYER
============================================= */
.fryer-section {
  background: linear-gradient(135deg, #080808 0%, #0a0a12 40%, #0d0b08 70%, #080808 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.fryer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,184,0,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255,92,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.fryer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}

/* ── 텍스트 영역 ── */
.fryer-content {
  position: relative;
  z-index: 2;
}

.fryer-title {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.fryer-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fryer-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin-bottom: 20px;
}

.fryer-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--gold);
  font-family: var(--font-disp);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.fryer-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  word-break: keep-all;
}
.fryer-desc strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── 스펙 그리드 ── */
.fryer-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.fryer-spec-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}
.fryer-spec-item:hover {
  background: rgba(255,184,0,0.08);
  border-color: rgba(255,184,0,0.25);
  transform: translateY(-2px);
}

.spec-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.fryer-spec-item strong {
  font-family: var(--font-disp);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.fryer-spec-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* ── 독점 배지 배너 ── */
.fryer-exclusive {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(255,92,0,0.08));
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 16px;
  padding: 20px 24px;
}
.exclusive-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fryer-exclusive strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.fryer-exclusive p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
  word-break: keep-all;
}

/* ── 이미지 영역 ── */
/* 갤러리 전체 래퍼 */
.fryer-gallery-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 메인 누끼 이미지 박스 */
.fryer-main-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 레거시 호환 */
.fryer-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 디테일 그리드 ── */
.fryer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

/* 첫 번째 항목 (컨트롤 패널 가로 와이드) */
.fryer-detail--wide {
  grid-column: span 3;
}

.fryer-detail-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

/* ── 흑백 처리 CSS 필터 ── */
.fryer-bw {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  /* 흑백 + 대비 강화 */
  filter: grayscale(100%) contrast(1.15) brightness(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.fryer-detail--wide .fryer-bw {
  height: 110px;
  object-position: center 40%;
}

/* 골드 배스킷 — 금속 노란색 살리기 */
.fryer-bw--gold {
  filter: grayscale(30%) contrast(1.2) brightness(0.9) sepia(20%);
}

/* hover: 약간 밝아지며 골드 틴트 */
.fryer-detail-item:hover .fryer-bw {
  filter: grayscale(60%) contrast(1.1) brightness(1.05) sepia(15%);
  transform: scale(1.04);
}
.fryer-detail-item:hover .fryer-bw--gold {
  filter: grayscale(0%) contrast(1.15) brightness(1.0) sepia(25%);
  transform: scale(1.04);
}

/* 라벨 */
.fryer-detail-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: rgba(255,184,0,0.9);
  font-family: var(--font-disp);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 18px 8px 7px;
  text-transform: uppercase;
}

.fryer-img-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255,184,0,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(30px);
  animation: fryerGlow 3s ease-in-out infinite alternate;
}

@keyframes fryerGlow {
  from { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

.fryer-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  drop-shadow: 0 40px 80px rgba(0,0,0,0.6);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(255,184,0,0.15));
  transition: transform 0.6s ease, filter 0.6s ease;
  animation: fryerFloat 4s ease-in-out infinite;
}
.fryer-img:hover {
  transform: scale(1.03) translateY(-6px);
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.8)) drop-shadow(0 0 60px rgba(255,184,0,0.25));
}

@keyframes fryerFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.fryer-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(13,13,13,0.95), rgba(20,15,0,0.95));
  border: 1px solid rgba(255,184,0,0.4);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: right;
  backdrop-filter: blur(8px);
}
.fryer-img-badge span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: var(--font-disp);
  font-weight: 700;
}
.fryer-img-badge strong {
  display: block;
  font-size: 0.88rem;
  font-family: var(--font-disp);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ============================================= 
   SECTION 3: CORE COMPETENCE
============================================= */
.competence-section {
  background: linear-gradient(180deg, #0D0D0D 0%, #111200 50%, #0D0D0D 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.competence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,184,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,92,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.competence-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.competence-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.competence-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
.competence-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.competence-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
}

.competence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.comp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.comp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.comp-card:hover {
  border-color: rgba(255,184,0,0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255,184,0,0.12);
}
.comp-card:hover::before { opacity: 1; }
.comp-card.featured {
  background: linear-gradient(135deg, rgba(255,184,0,0.12) 0%, rgba(255,92,0,0.08) 100%);
  border-color: rgba(255,184,0,0.35);
}
.comp-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(255,184,0,0.2);
}

.comp-icon-wrap { margin-bottom: 20px; }
.comp-icon { font-size: 2.8rem; }

.comp-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.comp-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
.comp-card-footer {
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Competence Banner */
.competence-banner {
  background: linear-gradient(135deg, rgba(255,184,0,0.12) 0%, rgba(255,92,0,0.1) 100%);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.banner-text strong { color: var(--gold); }
.btn-banner {
  white-space: nowrap;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-banner:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,92,0,0.35);
}

/* =============================================
   SECTION 4: MASCOT UNIVERSE
============================================= */
.mascot-section {
  background: #050510;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Space BG */
.space-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 80%, white 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 15%, rgba(255,220,100,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, white 0%, transparent 100%),
    radial-gradient(2px 2px at 65% 25%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 70%, rgba(200,200,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 45%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 60%, rgba(255,184,0,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 90%, white 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.planet {
  position: absolute;
  border-radius: 50%;
}
.planet-mars {
  width: 200px; height: 200px;
  top: 10%; right: 8%;
  background: radial-gradient(circle at 35% 35%, #e8856a, #c0402a 60%, #7a2011);
  box-shadow: 0 0 60px rgba(200,60,40,0.3), inset -20px -20px 40px rgba(0,0,0,0.4);
  animation: float 8s ease-in-out infinite;
}
.planet-small {
  width: 80px; height: 80px;
  bottom: 15%; left: 5%;
  background: radial-gradient(circle at 35% 35%, #9b8fc0, #5a4a8a 60%, #2a1a5a);
  box-shadow: 0 0 30px rgba(100,80,160,0.3);
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.mascot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.mascot-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.speech-bubble {
  display: inline-block;
  background: rgba(255,184,0,0.15);
  border: 1.5px solid rgba(255,184,0,0.4);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,184,0,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(255,184,0,0); }
}

.mascot-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
.mascot-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 지구인! 강조 텍스트 ── */
.earthling-text {
  display: inline-block;
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 900;
  font-family: var(--font-disp);
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, var(--orange) 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: earthlingShine 2.4s linear infinite, earthlingPop 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(255,184,0,0.5));
}

@keyframes earthlingShine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes earthlingPop {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ── 지구인! 주변 흔들림 (attention) ── */
.earthling-text:hover {
  animation: earthlingShine 1s linear infinite, earthlingWiggle 0.5s ease-in-out;
  cursor: default;
}

@keyframes earthlingWiggle {
  0%,100% { transform: rotate(0deg) scale(1); }
  20%     { transform: rotate(-4deg) scale(1.05); }
  40%     { transform: rotate(4deg) scale(1.07); }
  60%     { transform: rotate(-3deg) scale(1.04); }
  80%     { transform: rotate(3deg) scale(1.06); }
}
.mascot-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.mascot-sub strong { color: var(--gold); }

/* Spuddy Character — Official Image */
.spuddy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 40px 0 60px;
  min-height: 320px;
}

.spuddy-img-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: spuddyFloat 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(100,180,255,0.35)) drop-shadow(0 0 30px rgba(255,184,0,0.15));
}

.spuddy-official-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  /* 흰 배경 제거 — mix-blend-mode로 우주 배경과 자연스럽게 합성 */
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.3s ease;
}
.spuddy-img-char:hover .spuddy-official-img {
  transform: scale(1.05) rotate(-2deg);
}

/* 스퍼디 glow 링 효과 */
.spuddy-img-char::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(100,180,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes spuddyFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}

/* Sauce Beams */
.sauce-beam {
  position: absolute;
  font-size: 2rem;
  animation: beamFloat 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,184,0,0.6));
  z-index: 3;
}
.beam-1 { top: 15%; right: 18%; animation-delay: 0s; }
.beam-2 { top: 42%; right: 12%; animation-delay: 0.6s; }
.beam-3 { top: 68%; right: 20%; animation-delay: 1.2s; }
@keyframes beamFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

/* ══ Spudy Stage — 누끼 3캐릭터 자유 배치 ══ */
.spudy-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 60px;
  position: relative;
  min-height: 480px;
}

/* 공통 캐릭터 컨테이너 */
.spudy-char {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* 누끼 이미지 공통 */
.spudy-cut-img {
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
  transition: transform 0.4s ease;
}
.spudy-cut-img:hover { transform: scale(1.04) translateY(-6px); }

/* 좌측 — Episode 01 (먹방) */
.spudy-char--left {
  width: 260px;
  z-index: 1;
  transform: translateX(30px);
  animation: spuddyFloat 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
.spudy-char--left .spudy-cut-img {
  width: 100%;
  max-height: 360px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* 중앙 — 메인 스퍼디 (가장 크게) */
.spudy-char--center {
  width: 360px;
  z-index: 3;
  position: relative;
  animation: spuddyFloat 3.5s ease-in-out infinite;
}
.spudy-cut-img--main {
  width: 100%;
  max-height: 460px;
  filter: drop-shadow(0 30px 70px rgba(100,180,255,0.3))
          drop-shadow(0 0 40px rgba(255,184,0,0.2));
}

/* 우측 — Episode 02 (듀오) */
.spudy-char--right {
  width: 280px;
  z-index: 1;
  transform: translateX(-30px);
  animation: spuddyFloat 4.5s ease-in-out infinite;
  animation-delay: 1s;
}
.spudy-char--right .spudy-cut-img {
  width: 100%;
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* 에피소드 라벨 */
.spudy-ep-label {
  margin-top: 16px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  max-width: 220px;
}
.spudy-ep-label p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 6px 0 0;
  word-break: keep-all;
}
.spudy-ep-label p strong { color: var(--gold); }
.spudy-ep-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: var(--font-disp);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 100px;
}

/* 중앙 배지 */
.spudy-center-badge {
  margin-top: 16px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,184,0,0.35);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.spudy-center-badge span { font-size: 1.2rem; }
.spudy-center-badge strong {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.spudy-center-badge em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  display: block;
  letter-spacing: 0.5px;
}

/* ══ Spudy Universe — 3D 이미지 갤러리 (레거시) ══ */
.spudy-universe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 60px;
  align-items: center;
}

/* 메인 스퍼디 이미지 */
.spudy-main-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spudy-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(100,180,255,0.25) 0%, rgba(255,184,0,0.12) 50%, transparent 75%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(28px);
  animation: fryerGlow 3s ease-in-out infinite alternate;
  z-index: 0;
}
.spudy-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(100,180,255,0.2));
  animation: spuddyFloat 3.5s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.spudy-main-img:hover { transform: scale(1.04) rotate(-1deg); }

.spudy-name-badge {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spudy-name-badge span { font-size: 1.2rem; }
.spudy-name-badge strong {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.spudy-name-badge em {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: block;
  letter-spacing: 0.5px;
}

/* 스토리 카드 2장 */
.spudy-story-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spudy-story-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.spudy-story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.spudy-story-card:hover img { transform: scale(1.06); }
.spudy-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.spudy-card-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: var(--font-disp);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}
.spudy-card-overlay p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  word-break: keep-all;
}
.spudy-card-overlay p strong {
  color: var(--gold);
  font-weight: 700;
}

/* Sauce Carousel */
/* =============================================
   SAUCE UNIVERSE — 신규 그리드 카드 시스템
============================================= */
.sauce-universe-wrap {
  margin-top: 60px;
  padding: 0 4px;
}

.sauce-universe-title {
  text-align: center;
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.sauce-universe-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sauce-universe-sub {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

/* 3열 그리드 */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── 카드 공통 ── */
.snew-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s cubic-bezier(0.4,0,0.2,1),
              border-color 0.38s ease;
  cursor: default;
}
.snew-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(255,184,0,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}
.snew-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,184,0,0.22);
  border-color: rgba(255,184,0,0.28);
}
.snew-card:hover::after { opacity: 1; }

/* BEST 배지 */
.snew-card--featured {
  background: linear-gradient(145deg,
    rgba(232,50,10,0.14) 0%,
    rgba(255,184,0,0.08) 100%);
  border-color: rgba(232,50,10,0.35);
}
.snew-card--featured:hover {
  box-shadow: 0 20px 48px rgba(232,50,10,0.3), 0 0 0 1px rgba(255,100,0,0.4);
  border-color: rgba(255,120,0,0.5);
}
.snew-badge-best {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: linear-gradient(90deg, #FF5C00, #FFB800);
  color: #fff;
  font-family: var(--font-disp);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(255,92,0,0.45);
}

/* ── 이미지 영역 ── */
.snew-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;           /* 흰배경으로 소스 이미지 자연스럽게 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* 상단 그라디언트 오버레이로 어두운 배경에 자연스럽게 블렌딩 */
.snew-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(13,13,13,0.55) 100%);
  pointer-events: none;
}
.snew-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.snew-card:hover .snew-img {
  transform: scale(1.06);
}

/* ── 텍스트 영역 ── */
.snew-body {
  padding: 18px 20px 22px;
}
.snew-tags {
  margin-bottom: 10px;
}
.snew-heat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-disp);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px;
}
.snew-heat.mild {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
.snew-heat.medium {
  background: rgba(255,184,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,184,0,0.25);
}
.snew-heat.hot {
  background: rgba(232,50,10,0.15);
  color: #FF6B3D;
  border: 1px solid rgba(232,50,10,0.3);
}

.snew-kr {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3;
  word-break: keep-all;
}
.snew-en {
  font-family: var(--font-disp);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.snew-jp {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  line-height: 1.5;
}
.snew-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* =============================================
   SECTION 5.5: SOCIAL & REVIEWS
============================================= */
.social-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(225,48,108,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(255,184,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.social-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.social-header {
  text-align: center;
  margin-bottom: 56px;
}
.social-title {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}
.social-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  word-break: keep-all;
}

/* ── 3개 카드 그리드 ── */
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.soc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  padding: 36px 28px 32px;
  text-decoration: none;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s ease;
  cursor: pointer;
}
.soc-card:hover { transform: translateY(-8px); }

/* Instagram 카드 — 그라디언트 배경 */
.soc-card--ig {
  background: linear-gradient(135deg, #1a0a1e 0%, #2d0b2e 50%, #1a1000 100%);
  border: 1px solid rgba(225,48,108,0.25);
  box-shadow: 0 4px 24px rgba(225,48,108,0.08);
}
.soc-card--ig:hover {
  box-shadow: 0 20px 48px rgba(225,48,108,0.22);
  border-color: rgba(225,48,108,0.5);
}
.soc-card--ig .soc-icon-wrap { color: #E1306C; }
.soc-card--ig .soc-btn { color: #E1306C; }
.soc-card--ig .soc-bg-icon { color: rgba(225,48,108,0.06); }

/* Naver 카드 */
.soc-card--naver {
  background: linear-gradient(135deg, #001a0a 0%, #002d14 50%, #001506 100%);
  border: 1px solid rgba(3,199,90,0.22);
  box-shadow: 0 4px 24px rgba(3,199,90,0.06);
}
.soc-card--naver:hover {
  box-shadow: 0 20px 48px rgba(3,199,90,0.18);
  border-color: rgba(3,199,90,0.45);
}
.soc-card--naver .soc-icon-wrap { color: #03C75A; }
.soc-card--naver .soc-btn { color: #03C75A; }
.soc-card--naver .soc-bg-icon { color: rgba(3,199,90,0.05); }

/* Google 카드 */
.soc-card--google {
  background: linear-gradient(135deg, #0d0f1a 0%, #141828 50%, #0d1508 100%);
  border: 1px solid rgba(66,133,244,0.22);
  box-shadow: 0 4px 24px rgba(66,133,244,0.06);
}
.soc-card--google:hover {
  box-shadow: 0 20px 48px rgba(66,133,244,0.18);
  border-color: rgba(66,133,244,0.45);
}
.soc-card--google .soc-icon-wrap { color: #4285F4; }
.soc-card--google .soc-btn { color: #4285F4; }
.soc-card--google .soc-bg-icon { color: rgba(66,133,244,0.05); }

/* 아이콘 */
.soc-icon-wrap {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1;
}
.soc-icon-wrap .naver-icon {
  width: 32px;
  height: 32px;
  display: block;
}

/* 텍스트 */
.soc-platform {
  font-family: var(--font-disp);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.soc-handle {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.soc-stars {
  color: #FFB800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.soc-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  word-break: keep-all;
  margin-bottom: 20px;
  flex: 1;
}
.soc-btn {
  font-family: var(--font-disp);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  transition: letter-spacing 0.25s ease;
}
.soc-card:hover .soc-btn { letter-spacing: 2px; }

/* 배경 아이콘 (장식) */
.soc-bg-icon {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.soc-bg-icon svg { width: 110px; height: 110px; }
.soc-card:hover .soc-bg-icon { transform: scale(1.08) rotate(-6deg); }

/* ── 언어 토글 ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-disp);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(255,184,0,0.35);
}
.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* 모바일 메뉴 언어 행 */
.mob-lang-row {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 8px 0;
  justify-content: center;
}
.mob-lang-row .lang-btn {
  font-size: 0.82rem;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* =============================================
   SECTION 5: LIFESTYLE & OCCASION
============================================= */
.lifestyle-section {
  background: var(--dark2);
  padding: 120px 0;
  overflow: hidden;
}
.lifestyle-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lifestyle-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.lifestyle-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.lifestyle-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lifestyle-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* Brand Grid — 4 images layout
   구조: [tall | normal ] [normal | wide(span2)]
   col: 1    2      3
   row1: tall | crew  | chef
   row2: tall | box(span2)
*/
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 60px;
}

/* 브랜드 전용 그리드 — 4장 배치 (레거시, 미사용) */
.lifestyle-grid--brand {
  grid-template-areas:
    "tall  crew  chef"
    "tall  wide  wide";
}
.lifestyle-grid--brand .grid-item:nth-child(1) { grid-area: tall; }
.lifestyle-grid--brand .grid-item:nth-child(2) { grid-area: crew; }
.lifestyle-grid--brand .grid-item:nth-child(3) { grid-area: chef; }
.lifestyle-grid--brand .grid-item:nth-child(4) { grid-area: wide; }

/* 실제 매장 사진 그리드 — 6장 배치 */
.lifestyle-grid--real {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "tall  toss  queue"
    "tall  machine  machine"
    "toss2  exterior  exterior";
  gap: 14px;
}
.lifestyle-grid--real .grid-item:nth-child(1) { grid-area: tall;     }
.lifestyle-grid--real .grid-item:nth-child(2) { grid-area: toss;     }
.lifestyle-grid--real .grid-item:nth-child(3) { grid-area: queue;    }
.lifestyle-grid--real .grid-item:nth-child(4) { grid-area: machine;  }
.lifestyle-grid--real .grid-item:nth-child(5) { grid-area: toss2;    }
.lifestyle-grid--real .grid-item:nth-child(6) { grid-area: exterior; }

/* 1번: 크루샷 — 2행 tall */
.lifestyle-grid--real .grid-item:nth-child(1) { grid-row: span 2; }
.lifestyle-grid--real .grid-item:nth-child(1) img {
  min-height: 520px;
  object-position: center top;
}
/* 4번: 프라이어 머신 — 2열 wide */
.lifestyle-grid--real .grid-item:nth-child(4) img {
  min-height: 240px;
  object-position: center center;
}
/* 6번: 외관샷 — 2열 wide */
.lifestyle-grid--real .grid-item:nth-child(6) img {
  min-height: 240px;
  object-position: center center;
}
/* 나머지 일반 */
.lifestyle-grid--real .grid-item:nth-child(2) img,
.lifestyle-grid--real .grid-item:nth-child(3) img,
.lifestyle-grid--real .grid-item:nth-child(5) img { min-height: 250px; }

.grid-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
  display: block;
  min-height: 240px;
}
.grid-item:hover img { transform: scale(1.06); }

/* tall : 소스 씨즐샷 — 세로형이므로 object-position 상단 */
.lifestyle-grid--brand .grid-item:nth-child(1) img {
  min-height: 500px;
  object-position: center top;
}
/* crew : 정사각에 가까운 조리샷 */
.lifestyle-grid--brand .grid-item:nth-child(2) img { min-height: 240px; }
/* chef : 정사각 */
.lifestyle-grid--brand .grid-item:nth-child(3) img { min-height: 240px; }
/* wide : 박스샷 — 가로로 넓게, 박스 전면이 잘 보이도록 */
.lifestyle-grid--brand .grid-item:nth-child(4) img {
  min-height: 260px;
  object-position: center center;
}

/* Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0) 35%,
    rgba(13,13,13,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--transition);
}
.grid-item:hover .grid-overlay { opacity: 1; }

.grid-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  width: fit-content;
}
.grid-overlay p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
}

/* Lifestyle CTA */
.lifestyle-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(255,92,0,0.06));
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 20px;
}
.lifestyle-cta p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}
.btn-lifestyle {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-lifestyle:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,184,0,0.4);
}

/* =============================================
   SECTION 6: FRANCHISE CTA
============================================= */
.franchise-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.franchise-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.franchise-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.franchise-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.8) 50%,
    rgba(13,13,13,0.92) 100%
  );
}

.franchise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.franchise-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.franchise-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.franchise-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.franchise-desc strong { color: var(--gold); font-weight: 700; }

.franchise-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.fpoint i { color: var(--gold); font-size: 1rem; }

/* Form Card */
.franchise-form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.form-header {
  text-align: center;
  margin-bottom: 28px;
}
.form-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.form-header p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}
.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-ko);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #222; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,184,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.btn-franchise-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  transition: all var(--transition);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.btn-franchise-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,184,0,0.45);
}
.btn-franchise-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo .logo-sqiz { font-size: 2rem; }
.footer-slogan {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-corp {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i { color: var(--gold); width: 14px; }
.footer-sns {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-sns a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-sns a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* =============================================
   TOAST NOTIFICATION
============================================= */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark3);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   AOS — Simple Scroll Animation
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* =============================================
   KEYFRAMES
============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE — 태블릿 (1024px 이하)
============================================= */
@media (max-width: 1024px) {
  /* Brand */
  .brand-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-img-wrap { max-width: 480px; margin: 0 auto; }
  .brand-img { aspect-ratio: 4/3; }

  /* Fryer */
  .fryer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fryer-gallery-wrap { order: -1; }
  .fryer-img { max-width: 360px; }
  .fryer-detail-grid { grid-template-columns: 1fr 1fr 1fr; }
  .fryer-bw { height: 120px; }
  .fryer-detail--wide .fryer-bw { height: 90px; }

  /* Competence */
  .competence-cards { grid-template-columns: 1fr 1fr; }

  /* Social */
  .social-cards { grid-template-columns: 1fr; gap: 14px; }
  .soc-card { padding: 28px 22px 24px; border-radius: 20px; }

  /* Franchise */
  .franchise-inner { grid-template-columns: 1fr; gap: 40px; }
  .franchise-copy { text-align: center; }
  .franchise-points { align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* =============================================
   RESPONSIVE — 모바일 (768px 이하)
============================================= */
@media (max-width: 768px) {

  /* ── Hero 배경 이미지 모바일 보정 ── */
  .hero-bg-img {
    /* 모바일: 더 크게 확대해 모서리 완전 제거 */
    transform: scale(1.18);
    transform-origin: 42% center; /* 간판 중심 살짝 좌측으로 */
    object-position: 42% center;
  }

  /* ── 공통 섹션 패딩 축소 ── */
  .brand-section,
  .fryer-section,
  .competence-section,
  .mascot-section,
  .lifestyle-section,
  .franchise-section { padding: 72px 0; }

  /* ── 공통 섹션 타이틀 줄바꿈 ── */
  .competence-title,
  .mascot-title,
  .lifestyle-title,
  .franchise-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* ── Fryer 모바일 ── */
  .fryer-inner { padding: 0 20px; gap: 36px; }
  .fryer-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .fryer-model-badge { font-size: 0.76rem; letter-spacing: 1.5px; }
  .fryer-desc { font-size: 0.9rem; word-break: keep-all; overflow-wrap: break-word; line-height: 1.75; }
  .fryer-specs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fryer-spec-item { padding: 12px 10px; text-align: center; }
  .fryer-spec-item strong { font-size: 0.9rem; }
  .fryer-spec-item span { font-size: 0.75rem; }
  .fryer-exclusive { flex-direction: column; gap: 10px; word-break: keep-all; }
  .fryer-exclusive p { font-size: 0.83rem; word-break: keep-all; overflow-wrap: break-word; }
  .fryer-gallery-wrap { order: -1; }
  .fryer-main-img-box { margin-bottom: 12px; }
  .fryer-detail-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fryer-detail--wide { grid-column: span 2; }
  .fryer-bw { height: 110px; }
  .fryer-detail--wide .fryer-bw { height: 90px; }
  .fryer-img { max-width: 320px; margin: 0 auto; display: block; }
  .fryer-img-badge { bottom: 4px; right: 4px; font-size: 0.6rem; padding: 5px 10px; }
  .fryer-detail-label { font-size: 0.55rem; }

  /* ── NAV ── */
  .nav-links,
  .btn-franchise-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 20px; }
  /* 모바일에서도 lang-toggle 유지 (작게) */
  .lang-toggle { padding: 2px; }
  .lang-btn { font-size: 0.65rem; padding: 3px 8px; }

  /* ── HERO ── */
  .hero-title-line1,
  .hero-title-line2 {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
    word-break: keep-all;
    line-height: 1.1;
  }
  .hero-title { margin-bottom: 20px; }
  .hero-sub {
    font-size: 0.93rem;
    line-height: 1.75;
    padding: 0 4px;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 320px;
    margin: 0 auto 28px;
  }
  .hero-badge { font-size: 0.72rem; margin-bottom: 18px; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 13px 20px;
    font-size: 0.9rem;
  }

  /* ── BRAND IDENTITY ── */
  .brand-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .brand-img-wrap { max-width: 100%; }
  .brand-img { aspect-ratio: 4/3; }
  .brand-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .brand-lead {
    font-size: 0.95rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .brand-philosophy-line p {
    font-size: 0.9rem;
    word-break: keep-all;
  }
  .brand-conclusion {
    font-size: 1rem;
    word-break: keep-all;
  }
  .brand-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .stat-item { text-align: center; min-width: 80px; }
  .stat-item strong { font-size: 1.5rem; }

  /* ── CORE COMPETENCE ── */
  .competence-cards { grid-template-columns: 1fr; gap: 14px; }
  .competence-sub {
    font-size: 0.9rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .competence-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .banner-text { font-size: 0.92rem; word-break: keep-all; }

  /* ── MASCOT ── */
  .mascot-header { margin-bottom: 28px; padding: 0 20px; }
  .speech-bubble {
    font-size: 0.78rem;
    padding: 7px 14px;
    word-break: keep-all;
    white-space: normal;
    text-align: center;
    max-width: 90%;
    margin: 0 auto 16px;
  }
  .mascot-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .earthling-text {
    font-size: clamp(4rem, 18vw, 6rem);
    letter-spacing: -2px;
    display: block;
    line-height: 1;
  }
  .mascot-sub {
    font-size: 0.9rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.75;
  }
  .spuddy-official-img { width: 220px; height: 220px; }
  .spuddy-wrap { margin: 20px 0 36px; }
  .sauce-beam { display: none; }

  /* ── Sauce Universe 모바일 — 2열 */
  .sauce-universe-wrap { margin-top: 40px; padding: 0; }
  .sauce-universe-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .sauce-universe-sub { font-size: 0.85rem; margin-bottom: 28px; word-break: keep-all; }
  .sauce-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .snew-body { padding: 14px 14px 18px; }
  .snew-kr { font-size: 0.95rem; }
  .snew-en { font-size: 0.68rem; }
  .snew-jp { font-size: 0.6rem; }
  .snew-desc { font-size: 0.78rem; }
  .snew-heat { font-size: 0.6rem; padding: 2px 8px; }

  /* ── SOCIAL ── */
  .social-section { padding: 72px 0; }
  .social-inner { padding: 0 20px; }
  .social-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .social-sub { font-size: 0.88rem; word-break: keep-all; }
  .social-cards { grid-template-columns: 1fr; gap: 12px; }
  .soc-card { padding: 26px 20px 22px; flex-direction: row; align-items: flex-start; gap: 20px; }
  .soc-icon-wrap { font-size: 1.8rem; margin-bottom: 0; flex-shrink: 0; }
  .soc-handle { font-size: 1.1rem; }
  .soc-desc { font-size: 0.82rem; margin-bottom: 12px; }
  .soc-bg-icon { display: none; }
  .lang-toggle { display: flex; }

  /* ── LIFESTYLE ── */
  .lifestyle-inner { padding: 0 20px; }
  .lifestyle-title { word-break: keep-all; overflow-wrap: break-word; }
  .lifestyle-sub { font-size: 0.9rem; word-break: keep-all; overflow-wrap: break-word; }
  .lifestyle-grid--brand {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall  crew"
      "tall  chef"
      "wide  wide";
    gap: 10px;
  }
  .lifestyle-grid--brand .grid-item:nth-child(1) img { min-height: 380px; }
  .lifestyle-grid--brand .grid-item:nth-child(2) img,
  .lifestyle-grid--brand .grid-item:nth-child(3) img { min-height: 180px; }
  .lifestyle-grid--brand .grid-item:nth-child(4) img { min-height: 180px; }

  /* 실제 매장 사진 그리드 — 모바일 2열 */
  .lifestyle-grid--real {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall   toss"
      "tall   queue"
      "machine machine"
      "toss2  exterior";
    gap: 10px;
  }
  .lifestyle-grid--real .grid-item:nth-child(1) img { min-height: 360px; }
  .lifestyle-grid--real .grid-item:nth-child(2) img,
  .lifestyle-grid--real .grid-item:nth-child(3) img,
  .lifestyle-grid--real .grid-item:nth-child(5) img { min-height: 170px; }
  .lifestyle-grid--real .grid-item:nth-child(4) img,
  .lifestyle-grid--real .grid-item:nth-child(6) img { min-height: 200px; }

  /* Spudy Stage 모바일 */
  .spudy-stage {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: unset;
    padding: 0 16px;
  }
  /* 모바일 순서: center(main)이 맨 위 */
  .spudy-char--center { order: -1; }
  .spudy-char--left  { order: 0; }
  .spudy-char--right { order: 1; }

  .spudy-char--left,
  .spudy-char--right { transform: none; width: 100%; max-width: 280px; }
  .spudy-char--center { width: 100%; max-width: 300px; }
  .spudy-char--left .spudy-cut-img,
  .spudy-char--right .spudy-cut-img { max-height: 220px; width: auto; margin: 0 auto; display: block; }
  .spudy-cut-img--main { max-height: 280px; margin: 0 auto; display: block; }
  .spudy-ep-label { max-width: 100%; padding: 10px 14px; margin-top: 8px; }
  .spudy-ep-label p { font-size: 0.88rem; word-break: keep-all; }
  .spudy-center-badge { flex-wrap: wrap; justify-content: center; padding: 8px 16px; gap: 6px; }

  .grid-overlay { opacity: 1; } /* 모바일은 항상 오버레이 표시 */
  .grid-overlay p { font-size: 0.75rem; }
  .grid-tag { font-size: 0.62rem; padding: 3px 8px; }
  .lifestyle-cta {
    padding: 28px 20px;
    text-align: center;
  }
  .lifestyle-cta p { font-size: 1rem; word-break: keep-all; }

  /* ── FRANCHISE ── */
  .franchise-section { padding: 72px 0; }
  .franchise-inner { padding: 0 20px; }
  .franchise-copy { text-align: left; }
  .franchise-title { font-size: clamp(1.7rem, 6vw, 2.4rem); word-break: keep-all; }
  .franchise-desc { font-size: 0.93rem; word-break: keep-all; overflow-wrap: break-word; line-height: 1.75; }
  .franchise-form-card { padding: 28px 20px; }
  .form-header h3 { font-size: 1.1rem; word-break: keep-all; }
  .btn-franchise-submit { font-size: 0.92rem; padding: 14px; }

  /* ── FOOTER ── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 36px;
  }
  .footer-logo .logo-sqiz { font-size: 1.6rem; }
  .footer-slogan { font-size: 0.78rem; word-break: keep-all; }
  .footer-corp { font-size: 0.73rem; word-break: keep-all; overflow-wrap: break-word; }
  .footer-bottom { padding: 16px 20px; font-size: 0.7rem; word-break: keep-all; }
}

/* =============================================
   RESPONSIVE — 소형 모바일 (480px 이하)
============================================= */
@media (max-width: 480px) {

  /* ── HERO 배경 소형 모바일 보정 ── */
  .hero-bg-img {
    transform: scale(1.22);
    transform-origin: 40% center;
    object-position: 40% center;
  }

  /* ── HERO ── */
  .hero-title-line1,
  .hero-title-line2 { font-size: clamp(2.4rem, 12vw, 3.2rem); line-height: 1.05; }
  .hero-content { padding: 0 16px; }
  .hero-badge { font-size: 0.66rem; padding: 5px 12px; }
  .hero-sub { font-size: 0.88rem; max-width: 290px; }

  /* ── BRAND ── */
  .brand-inner { padding: 0 16px; gap: 24px; }
  .brand-img { aspect-ratio: 4/3; }
  .brand-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .brand-lead { font-size: 0.92rem; }
  .brand-philosophy { gap: 12px; }
  .brand-philosophy-line p { font-size: 0.85rem; word-break: keep-all; }
  .brand-conclusion { font-size: 0.93rem; word-break: keep-all; }
  .brand-stats { gap: 12px; }
  .stat-item strong { font-size: 1.3rem; }
  .stat-item span { font-size: 0.67rem; }

  /* ── COMPETENCE ── */
  .competence-inner { padding: 0 16px; }
  .competence-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .comp-card { padding: 22px 16px; }
  .comp-card h3 { font-size: 1rem; word-break: keep-all; }
  .comp-card p { font-size: 0.85rem; word-break: keep-all; }

  /* ── FRYER ── */
  .fryer-inner { padding: 0 16px; gap: 28px; }
  .fryer-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .fryer-desc { font-size: 0.88rem; word-break: keep-all; }
  .fryer-spec-item strong { font-size: 0.88rem; }
  .fryer-spec-item span { font-size: 0.75rem; }
  .fryer-detail-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fryer-bw { height: 80px; }
  .fryer-detail--wide .fryer-bw { height: 70px; }
  .fryer-img { max-width: 280px; }

  /* ── MASCOT ── */
  .mascot-inner { padding: 0 16px; }
  .mascot-title { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  .earthling-text { font-size: clamp(3.6rem, 17vw, 5.5rem); letter-spacing: -2px; }
  .speech-bubble { font-size: 0.72rem; }
  .spuddy-official-img { width: 180px; height: 180px; }
  .spuddy-wrap { min-height: 200px; }
  /* ── Sauce Universe 소형(480px↓) — 1열 */
  .sauce-grid { grid-template-columns: 1fr; gap: 12px; }
  .snew-img-wrap { aspect-ratio: 3 / 2; }
  .snew-body { padding: 14px 16px 18px; }
  .snew-kr { font-size: 1rem; }
  .snew-en { font-size: 0.7rem; }
  .snew-desc { font-size: 0.8rem; }

  /* ── LIFESTYLE ── */
  .lifestyle-inner { padding: 0 16px; }
  .lifestyle-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .lifestyle-grid--brand {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "crew"
      "chef"
      "wide";
    gap: 10px;
  }
  .lifestyle-grid--brand .grid-item img { min-height: 220px; }
  .lifestyle-grid--brand .grid-item:nth-child(1) img { min-height: 260px; }
  .lifestyle-cta p { font-size: 0.92rem; }
  .btn-lifestyle { font-size: 0.85rem; padding: 12px 22px; }

  /* ── LIFESTYLE(480px 이하) ── */
  .lifestyle-grid--real {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall   toss"
      "tall   queue"
      "machine machine"
      "toss2  exterior";
    gap: 8px;
  }
  .lifestyle-grid--real .grid-item:nth-child(1) img { min-height: 300px; }
  .lifestyle-grid--real .grid-item:nth-child(2) img,
  .lifestyle-grid--real .grid-item:nth-child(3) img,
  .lifestyle-grid--real .grid-item:nth-child(5) img { min-height: 140px; }
  .lifestyle-grid--real .grid-item:nth-child(4) img,
  .lifestyle-grid--real .grid-item:nth-child(6) img { min-height: 160px; }

  /* ── FRANCHISE ── */
  .franchise-inner { padding: 0 16px; }
  .franchise-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .franchise-desc { font-size: 0.87rem; word-break: keep-all; }
  .fpoint { font-size: 0.85rem; word-break: keep-all; }
  .franchise-form-card { padding: 22px 14px; border-radius: 16px; }
  .form-icon { font-size: 2rem; }
  .form-header h3 { font-size: 1rem; word-break: keep-all; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.87rem; padding: 10px 12px; }
  .btn-franchise-submit { font-size: 0.87rem; padding: 13px; }

  /* ── FOOTER ── */
  .footer-inner { padding: 0 14px 28px; }
  .footer-bottom { font-size: 0.66rem; word-break: keep-all; padding: 14px 16px; }

  /* ── TOAST ── */
  .toast {
    font-size: 0.82rem;
    padding: 12px 20px;
    width: 90%;
    white-space: normal;
    text-align: center;
  }
}
