/* =============================================
   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-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 60% 40%, rgba(255,184,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(255,92,0,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0D0D0D 0%, #1A0F00 50%, #0D0D0D 100%);
  /* Visual fallback with animated fries-like particles */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.25) 0%,
    rgba(13,13,13,0.55) 60%,
    rgba(13,13,13,0.95) 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: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── 텍스트 영역 ── */
.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-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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; }
}

/* Sauce Carousel */
.sauce-carousel-wrap {
  margin-top: 20px;
}
.carousel-title {
  text-align: center;
  font-family: var(--font-disp);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 32px;
}

.sauce-carousel {
  overflow: hidden;
  border-radius: 20px;
}
.sauce-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sauce-card {
  flex: 0 0 calc(33.333% - 14px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.sauce-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,184,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.sauce-card:hover {
  border-color: rgba(255,184,0,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255,184,0,0.1);
}
.sauce-card:hover::before { opacity: 1; }
.sauce-card.featured-sauce {
  background: linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,92,0,0.08));
  border-color: rgba(255,184,0,0.4);
}

.sauce-best {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 100px;
}
.sauce-emoji { font-size: 2.8rem; margin-bottom: 12px; }
.sauce-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sauce-name-en {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}
.sauce-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.sauce-heat { font-size: 0.85rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   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; }

.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-img-wrap { order: -1; max-width: 480px; margin: 0 auto; }
  .fryer-img { max-width: 400px; }

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

  /* 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) {

  /* ── 공통 섹션 패딩 축소 ── */
  .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-specs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fryer-spec-item { padding: 14px 12px; }
  .fryer-exclusive { flex-direction: column; gap: 12px; }
  .fryer-img { max-width: 320px; }
  .fryer-img-badge { bottom: 0; right: 0; }

  /* ── NAV ── */
  .nav-links,
  .btn-franchise-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 20px; }

  /* ── HERO ── */
  .hero-title-line1,
  .hero-title-line2 {
    font-size: clamp(2.6rem, 10vw, 4rem);
    word-break: keep-all;
  }
  .hero-sub {
    font-size: 0.92rem;
    padding: 0 8px;
    word-break: keep-all;
  }
  .hero-badge { font-size: 0.72rem; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 13px 24px;
    font-size: 0.92rem;
  }

  /* ── BRAND IDENTITY ── */
  .brand-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-img-wrap { max-width: 100%; }
  .brand-img { aspect-ratio: 16/9; }
  .brand-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .brand-lead {
    font-size: 0.97rem;
    word-break: keep-all;
  }
  .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: 16px; }
  .competence-sub {
    font-size: 0.9rem;
    word-break: keep-all;
  }
  .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: 36px; }
  .speech-bubble {
    font-size: 0.8rem;
    padding: 8px 16px;
    word-break: keep-all;
    white-space: normal;
    text-align: center;
  }
  .mascot-sub {
    font-size: 0.9rem;
    word-break: keep-all;
  }
  .spuddy-official-img { width: 220px; height: 220px; }
  .spuddy-wrap { margin: 24px 0 40px; }
  .sauce-beam { display: none; }

  /* 소스 캐러셀 — 1장씩 */
  .sauce-card { flex: 0 0 100%; }
  .sauce-name { font-size: 1rem; }
  .sauce-desc { font-size: 0.85rem; word-break: keep-all; }
  .carousel-title { font-size: 1.3rem; letter-spacing: 1px; }

  /* ── LIFESTYLE ── */
  .lifestyle-title { word-break: keep-all; }
  .lifestyle-sub { font-size: 0.9rem; word-break: keep-all; }
  .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; }
  .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-copy { text-align: left; }
  .franchise-desc { font-size: 0.93rem; word-break: keep-all; }
  .franchise-form-card { padding: 28px 20px; }
  .form-header h3 { font-size: 1.15rem; }
  .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.8rem; }
  .footer-corp { font-size: 0.75rem; }
  .footer-bottom { padding: 16px 20px; font-size: 0.72rem; }
}

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

  /* ── HERO ── */
  .hero-title-line1,
  .hero-title-line2 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-content { padding: 0 16px; }
  .hero-badge { font-size: 0.68rem; padding: 5px 14px; }

  /* ── BRAND ── */
  .brand-inner { padding: 0 16px; }
  .brand-img { aspect-ratio: 1/1; }
  .brand-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .brand-philosophy { gap: 14px; }
  .brand-philosophy-line p { font-size: 0.87rem; }
  .brand-conclusion { font-size: 0.95rem; }
  .brand-stats { gap: 12px; }
  .stat-item strong { font-size: 1.3rem; }
  .stat-item span { font-size: 0.68rem; }

  /* ── COMPETENCE ── */
  .competence-inner { padding: 0 16px; }
  .competence-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .comp-card { padding: 24px 18px; }
  .comp-card h3 { font-size: 1.05rem; }
  .comp-card p { font-size: 0.87rem; }

  /* ── MASCOT ── */
  .mascot-inner { padding: 0 16px; }
  .mascot-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .earthling-text { font-size: clamp(3.8rem, 18vw, 6rem); letter-spacing: -1px; }
  .speech-bubble { font-size: 0.75rem; }
  .spuddy-official-img { width: 180px; height: 180px; }
  .spuddy-wrap { min-height: 220px; }
  .sauce-card { padding: 22px 16px; }
  .sauce-emoji { font-size: 2.2rem; }

  /* ── 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; }

  /* ── FRANCHISE ── */
  .franchise-inner { padding: 0 16px; }
  .franchise-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .franchise-desc { font-size: 0.88rem; }
  .fpoint { font-size: 0.87rem; }
  .franchise-form-card { padding: 24px 16px; border-radius: 16px; }
  .form-icon { font-size: 2rem; }
  .form-header h3 { font-size: 1.05rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.88rem; padding: 11px 14px; }
  .btn-franchise-submit { font-size: 0.88rem; padding: 13px; }

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

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