/* ════════════════════════════════════════════════
   YOGURT LAB — Landing Page Styles
   Breakpoints:
     Desktop : 1200px+
     Tablet  : 768px – 1199px
     Mobile  : ~ 767px
   ════════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── DESIGN TOKENS ───────────────────────────── */
:root {
  --white:      #FFFFFF;
  --bg:         #F7F8FA;
  --blue:       #1A4FCC;
  --blue-dark:  #122F85;
  --blue-light: #EEF2FF;
  --orange:     #F97316;
  --black:      #0A0B0D;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --grid:       rgba(26, 79, 204, 0.055);

  --radius:    12px;
  --radius-sm:  8px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Section spacing */
  --py: 120px;
  --px: 80px;
}

/* ── LAYOUT UTILITIES ────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── TAG (pill label) ────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(26, 79, 204, 0.18);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.tag--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── SECTION HEADER ──────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p { color: var(--gray-600); font-size: 17px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background 0.22s, border-color 0.22s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 79, 204, 0.3);
}
.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn--naver {
  background: #03C75A;
  color: #fff;
  border: none;
}
.btn--naver:hover {
  background: #02a84b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 199, 90, 0.35);
}
.btn--outline-blue {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn--more {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.btn--more:hover { border-color: var(--blue); color: var(--blue); }
.btn--more span {
  font-family: 'Courier New', Courier, monospace;
  color: var(--orange);
  font-size: 13px;
}

/* ── REVEAL ANIMATION ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--px);
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark hero */
  transition: filter 0.3s var(--ease);
}
.nav.scrolled .nav__logo img { filter: none; }
.nav__logo-text {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav.scrolled .nav__logo-text { color: var(--black); }

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a { color: var(--gray-600); }
.nav.scrolled .nav__links a:hover { color: var(--blue); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav.scrolled .nav__hamburger span { background: var(--black); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.nav__drawer.open { max-height: 400px; }
.drawer__link {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.drawer__link:hover { color: var(--blue); }

/* ════════════════════════════════════════════════
   §01  HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 11, 13, 0.35) 0%,
    rgba(10, 11, 13, 0.5)  50%,
    rgba(10, 11, 13, 0.7)  100%
  );
}
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 32px;
}
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero__title {
  font-size: clamp(58px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__cta .btn {
  padding: 16px 38px;
  font-size: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroScroll 2s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* ════════════════════════════════════════════════
   §02  BRAND STORY
   ════════════════════════════════════════════════ */
.story {
  padding: var(--py) 0;
  background-color: var(--white);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 52px 52px;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__text h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.story__text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}
.story__text strong { color: var(--black); font-weight: 700; }

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.stat__num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat__num small { font-size: 17px; }
.stat__label {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.45;
}

.story__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gray-100);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
}
.story__visual video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 13px;
  border-radius: 100px;
  border: 1px solid rgba(26,79,204,0.18);
}

/* ════════════════════════════════════════════════
   §03  SIGNATURE MENU
   ════════════════════════════════════════════════ */
.menu-sec {
  padding: var(--py) 0;
  background: var(--bg);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.menu__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}
.menu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.09);
}
.menu__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
}
.menu__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu__card:hover .menu__img-wrap img { transform: scale(1.05); }
.menu__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,13,0.82) 0%, transparent 58%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.menu__card:hover .menu__overlay { opacity: 1; }
.menu__overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  line-height: 1.5;
}
.menu__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.menu__num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.menu__names { display: flex; flex-direction: column; gap: 3px; }
.menu__names strong { font-size: 14px; font-weight: 700; }
.menu__names span { font-size: 11px; color: var(--gray-400); letter-spacing: 0.04em; }

.menu__more-wrap { text-align: center; }

/* ════════════════════════════════════════════════
   §04  HIGHLIGHT
   ════════════════════════════════════════════════ */
.highlight {
  padding: var(--py) 0;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  color: #fff;
}
.highlight .section-header h2 { color: #fff; }
.highlight .section-header p  { color: rgba(255,255,255,0.45); }
.highlight__phones {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.phone-frame {
  width: 264px;
  height: 528px; /* ~1:2, close to 9:16 */
  border: 3px solid #2a2a3e;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    0 0 0 1px #1a1a2e,
    0 40px 80px rgba(0,0,0,0.55);
}
/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 4px;
  background: #2a2a3e;
  border-radius: 2px;
  z-index: 3;
}
.phone-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.phone-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  font-family: 'Courier New', Courier, monospace;
}
.highlight__cta { text-align: center; }

/* ════════════════════════════════════════════════
   §05  STORE
   ════════════════════════════════════════════════ */
.store {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.store__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  background: var(--gray-200);
}
.store__img { overflow: hidden; }
.store__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.store__img:hover img { transform: scale(1.04); }

.store__caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--py) var(--px);
  background-color: var(--white);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 52px 52px;
}
.store__caption h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.store__caption p { font-size: 16px; color: var(--gray-600); line-height: 1.75; }

/* ════════════════════════════════════════════════
   §06  INFO
   ════════════════════════════════════════════════ */
.info {
  padding: var(--py) 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 52px 52px;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info__details h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.info__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.info__list li { display: flex; gap: 14px; align-items: flex-start; }
.icon {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.info__list div { display: flex; flex-direction: column; gap: 4px; }
.info__list strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info__list span { font-size: 15px; line-height: 1.5; }
.info__list em {
  font-style: normal;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}
.info__list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info__list a:hover { color: var(--blue-dark); }

.info__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.info__map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.info__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: #fff;
  padding: 52px 0 36px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer__logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.footer__info p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.footer__social svg {
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.65);
}
.footer__social a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
}
.footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ════════════════════════════════════════════════
   TABLET  (768px – 1199px)
   ════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  :root { --py: 80px; --px: 40px; }

  .nav__inner { padding: 0 var(--px); }
  .nav__links  { gap: 24px; }
  .nav__links a { font-size: 13px; }
  .nav__logo img { height: 38px; }
  .nav__logo-text { font-size: 13px; }

  .hero__title { font-size: clamp(42px, 5vw, 58px); }
  .hero__sub   { font-size: 16px; }
  .hero__cta .btn { padding: 14px 30px; font-size: 15px; }

  /* Story */
  .story__grid { gap: 48px; }
  .story__text h2 { font-size: 32px; }

  /* Menu */
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  /* Hide cards 7-9 on tablet (more button visible) */
  .menu__card:nth-child(n+7) { display: none; }
  .menu__card:nth-child(n+7).show { display: block; }

  /* Highlight */
  .phone-frame { width: 240px; height: 480px; }

  /* Store */
  .store { grid-template-columns: 1fr; }
  .store__mosaic { min-height: 380px; }
  .store__caption { padding: var(--py) var(--px); }
  .store__caption h2 { font-size: 34px; }

  /* Info */
  .info__grid { gap: 48px; }
  .info__details h2 { font-size: 30px; }
  .info__map { height: 340px; }

  .section-header h2 { font-size: 34px; }

  /* Footer */
  .footer__inner { gap: 16px; }
}

/* ════════════════════════════════════════════════
   MOBILE  (≤ 767px)
   ════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --py: 64px; --px: 20px; }

  /* Nav */
  .nav__inner  { padding: 0 var(--px); height: 56px; }
  .nav__links  { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer    { display: flex; }
  .nav__logo img  { height: 30px; }
  .nav__logo-text { font-size: 12px; letter-spacing: 0.12em; }

  /* Hero */
  .hero { height: 100svh; height: 100vh; min-height: 580px; }
  .hero__title { font-size: clamp(32px, 8vw, 42px); }
  .hero__sub   { font-size: 14px; margin-bottom: 40px; }
  .hero__badge { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 24px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 300px; padding: 14px 24px; font-size: 15px; }
  .hero__grid-pattern { background-size: 26px 26px; }

  /* Story */
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__text h2 { font-size: 26px; }
  .story__visual { aspect-ratio: 16 / 9; }
  .stat__num { font-size: 26px; }
  .stat__num small { font-size: 14px; }

  /* Menu */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 26px; }
  .section-header p  { font-size: 15px; }

  .menu__grid { grid-template-columns: 1fr; gap: 12px; }
  /* Hide cards 7-9 on mobile */
  .menu__card:nth-child(n+7) { display: none; }
  .menu__card:nth-child(n+7).show { display: block; }
  /* Always show overlay on mobile (no hover) */
  .menu__overlay { opacity: 1; }
  .menu__img-wrap { aspect-ratio: 4 / 3; }

  /* Highlight */
  .highlight__phones { flex-direction: column; align-items: center; gap: 32px; }
  .phone-frame { width: 224px; height: 448px; }

  /* Store — 모바일: 이미지 세로 스택 */
  .store { grid-template-columns: 1fr; }
  .store__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px;
    min-height: unset;
  }
  .store__caption h2 { font-size: 28px; }

  /* Info */
  .info__grid { grid-template-columns: 1fr; gap: 36px; }
  .info__details h2 { font-size: 26px; margin-bottom: 24px; }
  .info__map { height: 240px; }
  .info__btns { flex-direction: column; }
  .info__btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy  { text-align: left; }

  /* Desktop-only: show all 9 + hide more button */
}

@media (min-width: 1200px) {
  /* On desktop all 9 cards always visible, hide more button */
  .menu__more-wrap { display: none; }
}

/* ════════════════════════════════════════════════
   SNS SHARE MODAL
   복붙할 때: SHARE_CONFIG (main.js 최상단)만 수정
   ════════════════════════════════════════════════ */
.share-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.share-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.share-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.28s var(--ease);
}
.share-overlay.open .share-modal {
  transform: translateY(0) scale(1);
}

.share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.share-modal__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.share-modal__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: background 0.18s, color 0.18s;
}
.share-modal__close:hover {
  background: var(--gray-100);
  color: var(--black);
}

.share-modal__url {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 20px;
}
.share-modal__url-text {
  flex: 1;
  font-size: 13px;
  color: var(--gray-600);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.share-modal__copy-btn {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.share-modal__copy-btn:hover { background: var(--blue-dark); }

.share-modal__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  width: 100%;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}
.share-btn:hover { transform: translateX(4px); }
.share-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.share-btn span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.01em;
}

.share-btn--kakao:hover           { background: #FEE500; border-color: #FEE500; }
.share-btn--kakao:hover span      { color: #3C1E1E; }

.share-btn--insta:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}
.share-btn--insta:hover span      { color: #fff; }

.share-btn--naver:hover           { background: #03C75A; border-color: #03C75A; }
.share-btn--naver:hover span      { color: #fff; }

.share-btn--facebook:hover        { background: #1877F2; border-color: #1877F2; }
.share-btn--facebook:hover span   { color: #fff; }

.share-btn--x:hover               { background: rgba(15,15,15,0.88); border-color: rgba(15,15,15,0.88); }
.share-btn--x:hover span          { color: #fff; }
.share-btn--x:hover img           { filter: invert(1); }

/* Toast */
.share-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 600;
  background: var(--black);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
