/* ==========================================================
   미친피자 (MICHINPIZZA) — Editorial brand site
   Typeface: Pretendard (Bold / Medium / Regular)
   Palette: Violet-forward, Black punctuation, Cream for reading
   ========================================================== */

:root {
  --violet: #AD1AAC;
  --violet-deep: #7d1180;
  --violet-line: rgba(255,255,255,0.28);
  --black: #2D2926;
  --cream: #F5F0E8;
  --yellow: #FFCD00;
  --red: #E4002B;
  --white: #FFFFFF;

  --font: 'Pretendard', -apple-system, 'Malgun Gothic', sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------- Editorial type system ----------------
   Head = Pretendard Bold(700) / Sub-head = Medium(500) / Body = Regular(400)
   ---------------------------------------------------------- */
h1, h2 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before { content: "— "; }

/* Forced line-break lines: each .ln is guaranteed its own line and
   never wraps internally — font-size scales with viewport width so
   the intended break points hold at any screen size. */
.ln { display: block; white-space: nowrap; }

.display-xl {
  font-size: clamp(18px, 6.3vw, 74px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.display-lg {
  font-size: clamp(17px, 5.9vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.3;
}

/* 히어로 서브카피와 같은 볼륨의 대형 스테이트먼트 텍스트. 색상은 쓰는
   곳(어두운/밝은 배경)에 맞춰 상속받은 color를 그대로 쓰고, 강조 구간만
   .text-yellow / .text-violet 로 지정한다. */
/* .display-lg의 수식(clamp(17px, 5.9vw, 60px))에 항상 여유있게 커지도록
   같은 vw 기울기에 고정폭을 더해서 모바일부터 데스크톱까지 어떤 화면에서도
   .mega-tagline이 .display-lg보다 작아지는 역전이 생기지 않는다. */
.mega-tagline {
  font-size: clamp(22px, calc(5.9vw + 6px), 90px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.strong { font-weight: 700; }
.text-yellow { color: var(--yellow); }
.text-violet { color: var(--violet); }

.lede {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.85;
  opacity: 0.86;
  max-width: 620px;
}

section { position: relative; padding: clamp(70px, 11vw, 160px) 0; }

.idx-num {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

/* ---------------- Text-link CTA (no pills, no boxes) ---------------- */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.28s ease, opacity 0.28s ease, color 0.28s ease;
}
.link-cta .arrow { display: inline-block; transition: transform 0.28s ease; }
.link-cta:hover { gap: 18px; opacity: 0.75; }
.link-cta:hover .arrow { transform: translateX(4px); }

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.site-header.is-scrolled {
  background: var(--violet-deep);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.brand-logo img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--yellow);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  width: 30px; height: 20px;
  position: relative;
  z-index: 1000;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transition: all 0.25s ease;
}
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 9px; }
.nav-toggle::after { top: 18px; }
.nav-toggle.open::before { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open::after { transform: translateY(-9px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,10,60,0.15) 0%, rgba(30,6,40,0.55) 55%, rgba(20,4,28,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 200px var(--gutter) 100px;
}
.hero .eyebrow { color: var(--yellow); opacity: 0.95; }
.hero-content .display-xl { margin-bottom: 0; }
.hero-content .lede { color: rgba(255,255,255,0.82); }

.hero-swap { position: relative; }
.hero-swap.is-active { display: grid; }
.hero-swap.is-active > * { grid-column: 1 / 1; grid-row: 1 / 1; align-self: start; }

.hero-content .hero-headline {
  font-size: clamp(30px, 8.5vw, 168px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero-content .hero-sub {
  font-size: clamp(17px, 4.6vw, 92px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: none;
}

.hero-actions { margin-top: 44px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero .link-cta { color: var(--white); }

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 44px; z-index: 2;
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::after { content: ""; width: 1px; height: 60px; background: rgba(255,255,255,0.4); }
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* ==================== PICKUP ORDER ==================== */
.pickup { background: var(--white); }
.pickup-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
}
.pickup-head .lede { margin-top: 22px; }

.pickup-panel {
  margin-top: 64px;
  padding: 40px 0;
  border-top: 1px solid rgba(45,41,38,0.18);
  border-bottom: 1px solid rgba(45,41,38,0.18);
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.pickup-locate {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
  transition: gap 0.28s ease, opacity 0.28s ease;
}
.pickup-locate:hover { gap: 20px; opacity: 0.7; }
.pickup-locate-icon { font-size: 18px; color: var(--violet); }
.pickup-fallback { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; width: 100%; }
.pickup-fallback[hidden] { display: none; }
.pickup-fallback span { font-size: 13px; opacity: 0.55; letter-spacing: 0.02em; white-space: nowrap; }
.pickup-fallback input {
  border: none; border-bottom: 1px solid rgba(45,41,38,0.3);
  background: none; outline: none;
  font-size: 15px; padding-bottom: 8px; flex: 1; min-width: 220px; color: var(--black);
}
.pickup-status { font-size: 13px; opacity: 0.6; margin: 0; }

.pickup-list { margin-top: 8px; }
.pickup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(45,41,38,0.12);
}
.pickup-row-info { flex: 1; min-width: 220px; }
.pickup-row .name { font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.pickup-row .dist { font-size: 12px; font-weight: 500; color: var(--violet); border: 1px solid var(--violet); padding: 2px 8px; }
.pickup-row .addr { font-size: 14px; opacity: 0.65; margin-top: 4px; }
.pickup-empty { padding: 30px 0; font-size: 14px; opacity: 0.5; }

/* ---------------- Order icon row (call / baemin / coupang / yogiyo) ---------------- */
.order-icons { display: flex; align-items: flex-start; gap: 18px; flex-shrink: 0; }
.order-icon {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: 0.02em;
  color: var(--black);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.order-icon svg { width: 19px; height: 19px; }
.order-icon img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.order-icon:hover { opacity: 1; transform: translateY(-2px); }
.order-icon.disabled { opacity: 0.28; cursor: default; pointer-events: none; }

/* ==================== BRAND STORY ==================== */
.story { position: relative; overflow: hidden; background: var(--violet); color: var(--white); }
.story-media { position: absolute; inset: 0; z-index: 0; }
.story-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(93,13,96,0.62) 0%, rgba(93,13,96,0.7) 100%);
}
.story .container { position: relative; z-index: 2; }
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}
.story-heading-col { max-width: max-content; }
.story-heading { margin-bottom: 0; }
.story-since {
  margin-top: 16px;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--yellow);
}
.story-copy { max-width: 640px; }
.story-copy p {
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin: 0 0 34px;
}
.story-copy p:last-child { margin-bottom: 0; }
.story-copy .story-highlight { display: block; font-weight: 700; color: var(--white); margin: 6px 0; }
.story-copy p.story-highlight-block { font-weight: 700; color: var(--yellow); }

/* ==================== IDENTITY ==================== */
.identity { background: var(--violet); color: var(--white); }
.identity-head { max-width: 780px; }
.identity-rows { margin-top: 70px; display: flex; flex-direction: column; }
.identity-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--violet-line);
}
.identity-row:last-child { border-bottom: 1px solid var(--violet-line); }
.identity-row.flip { grid-template-columns: 1.1fr 0.9fr; }
.identity-row.flip .identity-media { order: 2; }
.identity-row.flip .identity-text { order: 1; }
.identity-media { overflow: hidden; }
.identity-media img { width: 100%; height: clamp(260px, 32vw, 460px); object-fit: cover; transition: transform 0.7s ease; }
.identity-row:hover .identity-media img { transform: scale(1.05); }
.identity-media.dramatic { height: clamp(320px, 40vw, 560px); }
.identity-media.dramatic img { height: 100%; object-position: 50% 46%; transform: scale(1.35); }
.identity-row:hover .identity-media.dramatic img { transform: scale(1.42); }
.identity-text .idx-num { color: var(--yellow); display: block; margin-bottom: 18px; }
.identity-text .en { display: block; font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; margin-bottom: 14px; }
.identity-text h3 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; margin-bottom: 18px; }
.identity-text p { font-size: 15.5px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.8); max-width: 440px; }

/* ==================== FRANCHISE ==================== */
.franchise {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.franchise-media { position: absolute; inset: 0; z-index: 0; }
.franchise-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.franchise-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,10,0.25) 0%, rgba(10,8,10,0.55) 60%, rgba(8,6,8,0.9) 100%);
}
.franchise-content {
  position: relative; z-index: 2;
  padding: 120px var(--gutter) 90px;
}
.franchise-tagline { margin-bottom: 34px; }

.franchise-conditions {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px;
  padding-top: 26px;
  margin-bottom: 44px;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.fc-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow);
  flex-shrink: 0;
}
.fc-items { font-size: clamp(14px, 1.6vw, 17px); font-weight: 500; letter-spacing: 0.01em; color: rgba(255,255,255,0.9); }
.fc-sep { display: inline-block; margin: 0 12px; opacity: 0.5; }

.franchise .link-cta { color: var(--white); }

@media (max-width: 720px) {
  .franchise-content { padding: 90px var(--gutter) 70px; }
  .franchise-conditions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fc-sep { display: block; margin: 6px 0 0; }
}

/* ==================== MENU ==================== */
.menu { background: var(--white); overflow: hidden; }
.menu-head { margin-bottom: 48px; }

.menu-carousel-wrap { position: relative; }
.menu-carousel {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px var(--gutter) 12px;
  scrollbar-width: none;
}
.menu-carousel::-webkit-scrollbar { display: none; }

.menu-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(270px, 85vw, 620px);
  aspect-ratio: 3/2;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--black);
  cursor: pointer;
}
.menu-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.menu-card:hover img { transform: scale(1.045); }

.menu-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,4,28,0.88) 0%, rgba(20,4,28,0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu-card-name {
  position: absolute; top: 20px; left: 20px; right: 20px;
  color: var(--white);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  z-index: 2;
}
.menu-card-desc {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.6;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.menu-card:hover .menu-card-scrim,
.menu-card.is-open .menu-card-scrim { opacity: 1; }
.menu-card:hover .menu-card-desc,
.menu-card.is-open .menu-card-desc { opacity: 1; transform: translateY(0); }

.menu-card-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: none; border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, background 0.2s ease;
  z-index: 3;
}
.menu-card-close:hover { background: rgba(0,0,0,0.7); }
.menu-card.is-open .menu-card-close { opacity: 1; pointer-events: auto; }

.menu-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; z-index: 3;
  opacity: 0.85; transition: opacity 0.2s ease;
}
.menu-arrow:hover { opacity: 1; }
.menu-arrow-prev { left: clamp(4px, 1vw, 16px); }
.menu-arrow-next { right: clamp(4px, 1vw, 16px); }

.menu-cta { margin-top: 56px; }

/* ==================== INSTAGRAM ==================== */
.instagram { background: var(--cream); }
.instagram-head { max-width: 640px; }
.instagram-head .display-lg { margin: 20px 0 26px; }

.ig-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.ig-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  text-align: left;
  display: block;
  padding: 0;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ig-tile:hover img { transform: scale(1.06); }

/* ---------------- Modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,4,28,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity 0.25s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }
.modal-box {
  background: var(--white);
  color: var(--black);
  padding: 44px 40px;
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.modal-box p { font-size: 17px; font-weight: 500; line-height: 1.6; margin: 0 0 28px; }
.modal-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.modal-actions .link-cta { color: var(--violet); }
.modal-cancel { font-size: 13px; opacity: 0.5; }
.modal-cancel:hover { opacity: 0.9; }

/* ==================== COLLABORATION ==================== */
.collab { background: var(--violet); color: var(--white); }
.collab-head { max-width: 760px; }
.collab-manifesto {
  font-size: clamp(12px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.collab-rows { margin-top: 70px; display: flex; flex-direction: column; }
.collab-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--violet-line);
}
.collab-row:last-child { border-bottom: 1px solid var(--violet-line); }
.collab-row.flip { grid-template-columns: 0.9fr 1.1fr; }
.collab-row.flip .collab-media { order: 2; }
.collab-row.flip .collab-text { order: 1; }
.collab-media { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; }
.collab-media img { width: 100%; height: clamp(220px, 26vw, 380px); object-fit: cover; transition: transform 0.7s ease; }
.collab-media img:last-child { margin-top: 34px; }
.collab-row:hover .collab-media img { transform: scale(1.04); }
.collab-text .idx-num { color: var(--yellow); display: block; margin-bottom: 18px; }
.collab-text .en { display: block; font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; margin-bottom: 14px; }
.collab-text h3 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; margin-bottom: 18px; }
.collab-text p { font-size: 15.5px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.8); max-width: 420px; }

/* ==================== VIBES / GALLERY ==================== */
.vibes { background: var(--black); color: var(--white); }
.vibes-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 15vw;
  gap: 14px;
}
.vibes-grid figure { margin: 0; position: relative; overflow: hidden; }
.vibes-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.vibes-grid figure:hover img { transform: scale(1.06); }

.vg-a { grid-column: span 3; grid-row: span 2; }
.vg-b { grid-column: span 3; grid-row: span 2; }
.vg-c { grid-column: span 2; grid-row: span 2; }
.vg-d { grid-column: span 2; grid-row: span 2; }
.vg-e { grid-column: span 2; grid-row: span 2; }
.vg-f { grid-column: span 3; grid-row: span 2; }
.vg-g { grid-column: span 3; grid-row: span 2; }
.vg-h { grid-column: span 2; grid-row: span 3; }
.vg-i { grid-column: span 2; grid-row: span 3; }
.vg-j { grid-column: span 2; grid-row: span 3; }
.vg-k { grid-column: span 3; grid-row: span 2; }
.vg-l { grid-column: span 3; grid-row: span 2; }

/* ==================== STORES ==================== */
.stores { background: var(--cream); }
.stores-tools {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap;
  margin-top: 50px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(45,41,38,0.18);
}
.stores-search {
  border-bottom: 1px solid var(--black);
  padding-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
  min-width: 260px;
}
.stores-search input {
  border: none; background: none; outline: none;
  font-size: 15px; flex: 1; color: var(--black);
}
.region-tabs { display: flex; gap: 22px; flex-wrap: wrap; }
.region-tab {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em;
  opacity: 0.5;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.region-tab.active, .region-tab:hover { opacity: 1; border-bottom-color: var(--violet); }

.store-count { font-size: 12.5px; opacity: 0.5; margin-top: 18px; }

.store-list-wrap {
  margin-top: 6px;
  max-height: 900px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(45,41,38,0.3) transparent;
}
.store-list-wrap::-webkit-scrollbar { width: 6px; }
.store-list-wrap::-webkit-scrollbar-thumb { background: rgba(45,41,38,0.25); }
.store-list { margin-top: 0; }
.store-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(45,41,38,0.12);
}
.store-row-info { flex: 1; min-width: 220px; }
.store-row .name { font-size: 16px; font-weight: 500; }
.store-row .addr { font-size: 14px; opacity: 0.65; margin-top: 4px; }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--violet-deep); color: rgba(255,255,255,0.8); padding: 70px 0 26px; }
.footer-logo img { height: 40px; margin-bottom: 30px; }
.footer-info { font-size: 13px; font-weight: 400; line-height: 2.1; color: rgba(255,255,255,0.72); }
.footer-info .sep { margin: 0 8px; opacity: 0.4; }
.footer-legal {
  margin-top: 26px;
  font-size: 11.5px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--yellow); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-heading { margin-bottom: 4px; }
  .identity-row, .identity-row.flip { grid-template-columns: 1fr; }
  .identity-row.flip .identity-media, .identity-row.flip .identity-text { order: initial; }
  .collab-row, .collab-row.flip { grid-template-columns: 1fr; }
  .collab-row.flip .collab-media, .collab-row.flip .collab-text { order: initial; }
  .menu-arrow { display: none; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .vibes-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
  .vg-a, .vg-b, .vg-c, .vg-d, .vg-e, .vg-f, .vg-g, .vg-h, .vg-i, .vg-j, .vg-k, .vg-l { grid-column: span 1; grid-row: span 1; }
  .store-row, .pickup-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .order-icons { align-self: flex-start; }
}

/* 항목이 9개로 늘어나면서 1080px 이하 랩탑/태블릿 폭에서는 데스크톱 가로
   내비게이션이 다 들어가지 못해 넘치므로, 그보다 넉넉히 여유를 두고
   햄버거 메뉴로 전환한다. (콘텐츠 스택 등 나머지 720px 브레이크포인트와는
   별개.) */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 998;
    background: var(--violet-deep);
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 8px; padding: 0 34px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 20px; padding: 10px 0; }
  .nav-toggle { display: block; }
}

@media (max-width: 720px) {
  section { padding: 68px 0; }
  .hero-content { padding: 150px var(--gutter) 80px; }
  .hero-actions { gap: 22px; flex-direction: column; align-items: flex-start; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .vibes-grid { grid-template-columns: 1fr; grid-auto-rows: 78vw; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pickup-head { flex-direction: column; align-items: flex-start; }
  .collab-media { grid-template-columns: 1fr 1fr; }
  .collab-media img:last-child { margin-top: 0; }
  .store-list-wrap { max-height: 70vh; }
}
